aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbloodstalker <thabogre@gmail.com>2016-12-22 20:42:42 +0000
committerbloodstalker <thabogre@gmail.com>2016-12-22 20:42:42 +0000
commit9285245dba2597e5432894b4413502432a451e22 (patch)
treebbc9a27f4235647b5d5d9f6efac9283f5416a786
parentadded more tdd tests for 10.1 and 10.2 (diff)
downloadmutator-9285245dba2597e5432894b4413502432a451e22.tar.gz
mutator-9285245dba2597e5432894b4413502432a451e22.zip
added a new build type. now using some attributes from c++1z
Diffstat (limited to '')
-rw-r--r--makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/makefile b/makefile
index 2074119..293d693 100644
--- a/makefile
+++ b/makefile
@@ -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