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.
This commit is contained in:
Jon Turney 2020-11-11 14:03:58 +00:00
parent ff315bd18f
commit 7d5efba796
No known key found for this signature in database
GPG Key ID: C7C86F0370285C81
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ CFLAGS:=@CFLAGS@
CXXFLAGS:=@CXXFLAGS@ CXXFLAGS:=@CXXFLAGS@
INCLUDES:=@INCLUDES@ INCLUDES:=@INCLUDES@
override CFLAGS+=${CFLAGS_COMMON} override CFLAGS+=${CFLAGS_COMMON}
override CXXFLAGS+=-fno-exceptions -fno-rtti ${CFLAGS_COMMON} override CXXFLAGS+=${CFLAGS_COMMON}
include ${srcdir}/../Makefile.common include ${srcdir}/../Makefile.common