summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-01-30 18:59:06 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-01-30 18:59:06 -0600
commit74daf553362f6a216d0ed149c95f1041a604836e (patch)
treef12ac27bfa8f7dc60c3cfdf95dcb697a234e3df6
parent8e3ebed249ec7145de4094f3801335ce33fd5502 (diff)
downloadnuttx-74daf553362f6a216d0ed149c95f1041a604836e.tar.gz
nuttx-74daf553362f6a216d0ed149c95f1041a604836e.tar.bz2
nuttx-74daf553362f6a216d0ed149c95f1041a604836e.zip
Back out change. Unnecessary with code is all in tree and costs a LOT of build performance
-rw-r--r--nuttx/tools/Config.mk11
1 files changed, 0 insertions, 11 deletions
diff --git a/nuttx/tools/Config.mk b/nuttx/tools/Config.mk
index 633a49419..1a6076898 100644
--- a/nuttx/tools/Config.mk
+++ b/nuttx/tools/Config.mk
@@ -111,21 +111,11 @@ endef
#
# CC - The command to invoke the C compiler
# CFLAGS - Options to pass to the C compiler
-# WINTOOL - Set to "y" if this is a Windows Cygwin build using a
-# Windows native toolchain. In that case, paths created by the
-# Cygwin makefile must be converted to Windows paths for the tool.
-ifeq ($(WINTOOL),y)
-define COMPILE
- @echo "CC: $1"
- $(Q) $(CC) -c $(CFLAGS) "${shell cygpath -w $1}" -o $2
-endef
-else
define COMPILE
@echo "CC: $1"
$(Q) $(CC) -c $(CFLAGS) $1 -o $2
endef
-endif
# COMPILEXX - Default macro to compile one C++ file
# Example: $(call COMPILEXX, in-file, out-file)
@@ -251,4 +241,3 @@ define CLEAN
$(Q) rm -f *$(OBJEXT) *$(LIBEXT) *~ .*.swp
endef
endif
- \ No newline at end of file