Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--winsup/ChangeLog4
-rw-r--r--winsup/Makefile.common5
2 files changed, 7 insertions, 2 deletions
diff --git a/winsup/ChangeLog b/winsup/ChangeLog
index 72ef6859f..ff2f4ff54 100644
--- a/winsup/ChangeLog
+++ b/winsup/ChangeLog
@@ -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
diff --git a/winsup/Makefile.common b/winsup/Makefile.common
index 8e5bbda9d..4400b3727 100644
--- a/winsup/Makefile.common
+++ b/winsup/Makefile.common
@@ -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)