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:
parent
ff315bd18f
commit
7d5efba796
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue