diff mbox

Fix (hopefully) missing dot symbols in skiboot.map

Message ID 1427433154.6468.166.camel@kernel.crashing.org
State Accepted
Headers show

Commit Message

Benjamin Herrenschmidt March 27, 2015, 5:12 a.m. UTC
I wasn't able to test as my toolchain always emits them

Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
---
 Makefile.rules | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox

Patch

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]\)' > $@, $@)