
Contrary to popular belief, the entry point for a stand-alone program is not consistent. The only way to know for sure is to use the nm program and search for the entry point function. So we update the Makefile build rule to display this entry point after the ELF image is created.
Signed-off-by: Timur Tabi timur@freescale.com --- examples/standalone/Makefile | 1 + 1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/examples/standalone/Makefile b/examples/standalone/Makefile index 6ea3b93..d6a01ea 100644 --- a/examples/standalone/Makefile +++ b/examples/standalone/Makefile @@ -83,6 +83,7 @@ $(obj)%: $(obj)%.o $(LIB) $(LD) -g -Ttext $(STANDALONE_LOAD_ADDR) \ -o $@ -e $(SYM_PREFIX)$(notdir $(<:.o=)) $< $(LIB) \ -L$(gcclibdir) -lgcc + $(NM) $@ | grep $@
$(SREC): $(obj)%.srec: $(obj)%