OSDN Git Service

* Makefile.common: Don't send -nostdinc++ with g++.
authorcgf <cgf>
Wed, 6 Aug 2003 02:06:43 +0000 (02:06 +0000)
committercgf <cgf>
Wed, 6 Aug 2003 02:06:43 +0000 (02:06 +0000)
winsup/ChangeLog
winsup/Makefile.common

index 72ef685..ff2f4ff 100644 (file)
@@ -1,3 +1,7 @@
+2003-08-05  Christopher Faylor  <cgf@redhat.com>
+
+       * Makefile.common: Don't send -nostdinc++ with g++.
+
 2003-07-25  Christopher Faylor  <cgf@redhat.com>
 
        * Makefile.in: Only use localhost when building mingw with distcc or
index 8e5bbda..4400b37 100644 (file)
@@ -76,8 +76,9 @@ endif
 # Attempt to properly detect missing mingw or w32api and adjust command
 # line parameters appropriately
 
-nostdinc:=${shell [ -d "$(updir)/w32api" ] && echo "-nostdinc -nostdinc++"}
+nostdinc:=${shell [ -d "$(updir)/w32api" ] && echo "-nostdinc"}
 ifneq (,$(nostdinc))
+nostdincxx:=-nostdinc++
 ifeq (,${findstring $(w32api_source),$(CFLAGS) $(CXXFLAGS) $(CXX) $(CC)})
 w32api_include:=-I$(w32api_source)/include
 endif
@@ -129,7 +130,7 @@ ifeq (,${findstring $(gcc_libdir),$(CFLAGS) $(CXXFLAGS) $(CXX) $(CC)})
 GCC_INCLUDE:=${subst //,/,-I$(gcc_libdir)/include}
 endif
 
-COMPILE_CXX=$(CXX) $c $(nostdinc) $(ALL_CXXFLAGS) $(GCC_INCLUDE) \
+COMPILE_CXX=$(CXX) $c $(nostdincxx) $(ALL_CXXFLAGS) $(GCC_INCLUDE) \
             -fno-rtti -fno-exceptions
 COMPILE_CC=$(CC) $c $(nostdinc) $(ALL_CFLAGS) $(GCC_INCLUDE)