* (2/3) cleanup : use $CXXFLAGS instead $NEEDED_FLAGS

This commit is contained in:
hagen 2014-12-12 07:58:01 +00:00
parent 4e94bc9efc
commit d6ec412422
3 changed files with 9 additions and 10 deletions

View file

@ -5,13 +5,13 @@ FGREP = fgrep
IS_64 := $(shell $(CXX) -dumpmachine 2>&1 | $(FGREP) -c "64")
USE_AESNI := yes
ifeq ($(shell expr match ${CXXVER} "4\.[0-9][0-9]"),4) # >= 4.10
NEEDED_CXXFLAGS += -std=c++11
CXXFLAGS += -std=c++11
else ifeq ($(shell expr match ${CXXVER} "4\.[7-9]"),3) # >= 4.7
NEEDED_CXXFLAGS += -std=c++11
CXXFLAGS += -std=c++11
else ifeq ($(shell expr match ${CXXVER} "4\.6"),3) # = 4.6
NEEDED_CXXFLAGS += -std=c++0x
CXXFLAGS += -std=c++0x
else ifeq ($(shell expr match $(CXX) 'clang'),5)
NEEDED_CXXFLAGS += -std=c++11
CXXFLAGS += -std=c++11
else # not supported
$(error Compiler too old)
endif