mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 09:13:34 +00:00
ENABLE_EXPENSIVE_CHECKS shouldn't know how rtti is enabled, let REQUIRES_RTTI handle it.
llvm-svn: 94375
This commit is contained in:
parent
82318209c4
commit
c0335bacb4
@ -365,6 +365,12 @@ endif
|
||||
# CXX.Flags += -fvisibility-inlines-hidden
|
||||
#endif
|
||||
|
||||
ifdef ENABLE_EXPENSIVE_CHECKS
|
||||
# GNU libstdc++ uses RTTI if you define _GLIBCXX_DEBUG, which we did above.
|
||||
# See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=40160
|
||||
REQUIRES_RTTI := 1
|
||||
endif
|
||||
|
||||
# IF REQUIRES_EH=1 is specified then don't disable exceptions
|
||||
ifndef REQUIRES_EH
|
||||
CXX.Flags += -fno-exceptions
|
||||
@ -468,13 +474,6 @@ ifeq ($(ARCH),Alpha)
|
||||
LD.Flags += -Wl,--no-relax
|
||||
endif
|
||||
|
||||
ifdef ENABLE_EXPENSIVE_CHECKS
|
||||
# GNU libstdc++ uses RTTI if you define _GLIBCXX_DEBUG, which we did above.
|
||||
# See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=40160
|
||||
CXX.Flags := $(filter-out -fno-rtti,$(CXX.Flags))
|
||||
CXXFLAGS := $(filter-out -fno-rtti,$(CXXFLAGS))
|
||||
endif
|
||||
|
||||
#--------------------------------------------------------------------
|
||||
# Directory locations
|
||||
#--------------------------------------------------------------------
|
||||
|
Loading…
x
Reference in New Issue
Block a user