This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-apps.git
commit 38f006464b2c3fed92eaf5ff18ba5b5e6b952781 Author: YAMAMOTO Takashi <[email protected]> AuthorDate: Wed Feb 26 14:30:56 2020 +0900 Put back libapps to the default LDLIBS, even for KERNEL build This is a partial revert of b5cfd9344439c9aeb25c539431a034bdca6b5154 ("apps/: Modification to build system: Unified application compilation rules") --- Make.defs | 2 -- 1 file changed, 2 deletions(-) diff --git a/Make.defs b/Make.defs index 505af7d..7f30e9e 100644 --- a/Make.defs +++ b/Make.defs @@ -153,10 +153,8 @@ endif CFLAGS += ${shell $(INCDIR) $(INCDIROPT) "$(CC)" "$(APPDIR)$(DELIM)include"} CXXFLAGS += ${shell $(INCDIR) $(INCDIROPT) "$(CC)" "$(APPDIR)$(DELIM)include"} -ifneq ($(CONFIG_BUILD_KERNEL),y) ifeq ($(WINTOOL),y) LDLIBS ?= "${shell cygpath -w $(BIN)}" else LDLIBS ?= $(BIN) endif -endif
