You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by ya...@apache.org on 2020/04/14 08:33:37 UTC

[incubator-nuttx] branch master updated: esp32: Remove the unecessary PREPROCESS call to fix build warning

This is an automated email from the ASF dual-hosted git repository.

yamamoto pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git


The following commit(s) were added to refs/heads/master by this push:
     new 4c7274c  esp32: Remove the unecessary PREPROCESS call to fix build warning
     new b855ec2  Merge pull request #781 from liuguo09/testbuild
4c7274c is described below

commit 4c7274c2a4167abc6b1f0d271b789438a5206892
Author: liuhaitao <li...@xiaomi.com>
AuthorDate: Tue Apr 14 15:20:52 2020 +0800

    esp32: Remove the unecessary PREPROCESS call to fix build warning
    
    xtensa-esp32-elf-gcc: warning: /home/jenkins/jenkins-slave/workspace/NuttX-Nightly-Build/nuttx/boards/xtensa/esp32/esp32-core/scripts/esp32.template: linker input file unused because linking not done.
    
    Signed-off-by: liuhaitao <li...@xiaomi.com>
---
 boards/xtensa/esp32/esp32-core/src/Makefile | 1 -
 1 file changed, 1 deletion(-)

diff --git a/boards/xtensa/esp32/esp32-core/src/Makefile b/boards/xtensa/esp32/esp32-core/src/Makefile
index a44a001..413455d 100644
--- a/boards/xtensa/esp32/esp32-core/src/Makefile
+++ b/boards/xtensa/esp32/esp32-core/src/Makefile
@@ -58,7 +58,6 @@ EXTRA_DISTCLEAN = $(call DELFILE, $(SCRIPTOUT))
 include $(TOPDIR)/boards/Board.mk
 
 $(SCRIPTOUT): $(SCRIPTIN) $(CONFIGFILE)
-	# $(call PREPROCESS, $(SCRIPTIN), $@)
 	$(Q) $(CC) -isystem $(TOPDIR)/include -C -P -x c -E $(SCRIPTIN) -o $@
 
 context: $(SCRIPTOUT)