You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by GitBox <gi...@apache.org> on 2022/09/12 04:38:31 UTC

[GitHub] [incubator-nuttx] Gary-Hobson commented on pull request #7048: Optimizing mkallsyms scripts with python

Gary-Hobson commented on PR #7048:
URL: https://github.com/apache/incubator-nuttx/pull/7048#issuecomment-1243212181

   > Probably we need to add `allsyms.tmp` to `.gitignore`
   
   Normally you shouldn't see allsyms.tmp because it gets deleted after use.
   ```
   define LINK_ALLSYMS
   	$(Q) $(TOPDIR)/tools/mkallsyms.py noconst $(NUTTX) allsyms.tmp
   	$(Q) $(call COMPILE, -x c allsyms.tmp, allsyms$(OBJEXT))
   	$(if $(CONFIG_HAVE_CXX),\
   	$(Q) "$(CXX)" $(CFLAGS) $(LDFLAGS) -o $(NUTTX) \
   	      $(HEADOBJ) nuttx.rel $(HOSTOBJS) $(STDLIBS) allsyms$(OBJEXT),\
   	$(Q) "$(CC)" $(CFLAGS) $(LDFLAGS) -o $(NUTTX) \
   	      $(HEADOBJ) nuttx.rel $(HOSTOBJS) $(STDLIBS) allsyms$(OBJEXT))
   	$(Q) $(call DELFILE, allsyms.tmp allsyms$(OBJEXT))
   endef
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@nuttx.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org