diff options
author | bloodstalker <thabogre@gmail.com> | 2016-12-22 20:42:42 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2016-12-22 20:42:42 +0000 |
commit | 9285245dba2597e5432894b4413502432a451e22 (patch) | |
tree | bbc9a27f4235647b5d5d9f6efac9283f5416a786 | |
parent | added more tdd tests for 10.1 and 10.2 (diff) | |
download | mutator-9285245dba2597e5432894b4413502432a451e22.tar.gz mutator-9285245dba2597e5432894b4413502432a451e22.zip |
added a new build type. now using some attributes from c++1z
-rw-r--r-- | makefile | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -31,6 +31,12 @@ EXTRA_CXX_FALGS=-I$(shell $(LLVM_CONF) --src-root)/tools/clang/include -I$(shell EXTRA_LD_FLAGS=-v tinyxml2/tinyxml2.o endif +ifeq ($(BUILD_MODE), COV_NO_CLANG_1Z) +EXTRA_CXX_FALGS=-I$(shell $(LLVM_CONF) --src-root)/tools/clang/include -I$(shell $(LLVM_CONF) --obj-root)/tools/clang/include\ + -std=c++1z -stdlib=libstdc++ -UNDEBUG +EXTRA_LD_FLAGS=-v tinyxml2/tinyxml2.o +endif + ifeq ($(BUILD_MODE), GNU_MODE) EXTRA_CXX_FALGS=-I$(shell $(LLVM_CONF) --src-root)/tools/clang/include -I$(shell $(LLVM_CONF) --obj-root)/tools/clang/include\ -std=c++11 -stdlib=libstdc++ -UNDEBUG |