From e84faa17ebb87c6a2002c99193c5214a11cdf07e Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Sun, 7 Sep 2014 07:15:59 -0600 Subject: Add an nm command after every kernel build link to show if there are any undefined symbols --- apps/examples/pashello/Makefile | 1 + 1 file changed, 1 insertion(+) (limited to 'apps/examples/pashello') diff --git a/apps/examples/pashello/Makefile b/apps/examples/pashello/Makefile index be11bb760..6f5c2a3e1 100644 --- a/apps/examples/pashello/Makefile +++ b/apps/examples/pashello/Makefile @@ -102,6 +102,7 @@ ifeq ($(CONFIG_BUILD_KERNEL),y) $(BIN_DIR)$(DELIM)$(PROGNAME): $(OBJS) $(MAINOBJ) @echo "LD: $(PROGNAME)" $(Q) $(LD) $(LDELFFLAGS) $(LDLIBPATH) -o $(INSTALL_DIR)$(DELIM)$(PROGNAME) $(ARCHCRT0OBJ) $(MAINOBJ) $(LDLIBS) + $(Q) $(NM) -u $(INSTALL_DIR)$(DELIM)$(PROGNAME) install: $(BIN_DIR)$(DELIM)$(PROGNAME) -- cgit v1.2.3