summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJon Turney <jon.turney@dronecode.org.uk>2020-11-11 14:03:58 +0000
committerJon Turney <jon.turney@dronecode.org.uk>2020-11-18 16:26:35 +0000
commit7d5efba7967ba22592b7ae9cf9877120cc9792db (patch)
tree406a3428ff8b6066a50e34b80eb00dd0964bc4d6
parentff315bd18f81c8ed90dfd4a7c1b673d9cd67dc8a (diff)
downloadcygnal-7d5efba7967ba22592b7ae9cf9877120cc9792db.tar.gz
cygnal-7d5efba7967ba22592b7ae9cf9877120cc9792db.tar.bz2
cygnal-7d5efba7967ba22592b7ae9cf9877120cc9792db.zip
Cygwin: Drop duplicate C++ flags used to build utils
'-fno-exceptions -fno-rtti' are already present in the compile command COMPILE.cc set by Makefile.common, so we don't need to add them to CXXFLAGS as well.
-rw-r--r--winsup/utils/Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/utils/Makefile.in b/winsup/utils/Makefile.in
index e21874027..a9d66a5ee 100644
--- a/winsup/utils/Makefile.in
+++ b/winsup/utils/Makefile.in
@@ -19,7 +19,7 @@ CFLAGS:=@CFLAGS@
CXXFLAGS:=@CXXFLAGS@
INCLUDES:=@INCLUDES@
override CFLAGS+=${CFLAGS_COMMON}
-override CXXFLAGS+=-fno-exceptions -fno-rtti ${CFLAGS_COMMON}
+override CXXFLAGS+=${CFLAGS_COMMON}
include ${srcdir}/../Makefile.common