]> sourceware.org Git - newlib-cygwin.git/commitdiff
* Makefile.common: Add -dD to options when creating preprocess files.
authorChristopher Faylor <me@cgf.cx>
Wed, 23 Mar 2005 03:22:27 +0000 (03:22 +0000)
committerChristopher Faylor <me@cgf.cx>
Wed, 23 Mar 2005 03:22:27 +0000 (03:22 +0000)
winsup/ChangeLog
winsup/Makefile.common

index 3e7cef6610320d8bda92eb4902408496e48cfeab..3885217c5730bb5eda1e5df53ea7e3834a0a5572 100644 (file)
@@ -1,3 +1,7 @@
+2005-03-22  Christopher Faylor  <cgf@timesys.com>
+
+       * Makefile.common: Add -dD to options when creating preprocess files.
+
 2003-11-23  Corinna Vinschen  <corinna@vinschen.de>
 
        * Makefile.in: Make cygserver depending on cygwin.
index 1edd4dc3c5a8f46ce5b1d8472f2bd75aa8f9b7ff..034feaf7b4959133c2f9f218e5db259d5ba2266f 100644 (file)
@@ -76,13 +76,13 @@ endif
 # Attempt to properly detect missing mingw or w32api and adjust command
 # line parameters appropriately
 
-nostdinc:=${shell [ -d "$(updir)/w32api" ] && echo "-nostdinc"}
-ifneq (,$(nostdinc))
+nostdinc:=${shell [ -d "$(updir)/w32api" ] && echo "-nostdinc"}
+ifneq (,$(nostdinc))
 nostdincxx:=-nostdinc++
-ifeq (,${findstring $(w32api_source),$(CFLAGS) $(CXXFLAGS) $(CXX) $(CC)})
+ifeq (,${findstring $(w32api_source),$(CFLAGS) $(CXXFLAGS) $(CXX) $(CC)})
 w32api_include:=-I$(w32api_source)/include
-endif
-endif
+endif
+endif
 
 mingw_include:=${shell [ -d "$(mingw_source)/include" ] && echo "-I$(mingw_source)/include"}
 ifneq (,$(mingw_include))
@@ -120,7 +120,7 @@ ifndef PREPROCESS
 c=-c
 o=.o
 else
-c=-E
+c=-E -dD
 o=.E
 endif
 
This page took 0.032041 seconds and 5 git commands to generate.