diff options
author | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2015-03-27 16:12:34 +1100 |
---|---|---|
committer | Stewart Smith <stewart@linux.vnet.ibm.com> | 2015-03-31 15:42:37 +1100 |
commit | e1385e6e0088ebc13f0bd5b0e96769672ccf6266 (patch) | |
tree | 4463773ea80b47529fed12a9a0ce8b11e469597f /Makefile.rules | |
parent | 989d8b68b63ba21a58fb96cd0b0a82505e669046 (diff) | |
download | skiboot-e1385e6e0088ebc13f0bd5b0e96769672ccf6266.zip skiboot-e1385e6e0088ebc13f0bd5b0e96769672ccf6266.tar.gz skiboot-e1385e6e0088ebc13f0bd5b0e96769672ccf6266.tar.bz2 |
Fix (hopefully) missing dot symbols in skiboot.map
I wasn't able to test as my toolchain always emits them
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
Diffstat (limited to 'Makefile.rules')
-rw-r--r-- | Makefile.rules | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.rules b/Makefile.rules index d63cbf4..3534f5d 100644 --- a/Makefile.rules +++ b/Makefile.rules @@ -70,4 +70,4 @@ endif $(call Q,CC, $(CC) $(CPPFLAGS) -P -E $< -o $@, $@) %.map: %.elf - $(call Q,NM, $(NM) -n $< | grep -v '\( [aNUw] \)\|\(__crc_\)\|\( \$[adt]\)' > $@, $@) + $(call Q,NM, $(NM) --synthetic -n $< | grep -v '\( [aNUw] \)\|\(__crc_\)\|\( \$[adt]\)' > $@, $@) |