aboutsummaryrefslogtreecommitdiffstats
path: root/makefile
diff options
context:
space:
mode:
authorbloodstalker <thabogre@gmail.com>2017-02-07 06:05:22 +0000
committerbloodstalker <thabogre@gmail.com>2017-02-07 06:05:22 +0000
commitca3fba2736228666d8f70e74c05e535f7c8dd073 (patch)
treeef071513a76fb4ad22ed4241d1ebb92b835f4458 /makefile
parenttrying to figure out where the headers are... (diff)
downloadmutator-ca3fba2736228666d8f70e74c05e535f7c8dd073.tar.gz
mutator-ca3fba2736228666d8f70e74c05e535f7c8dd073.zip
added new options to cov_gnu
Diffstat (limited to 'makefile')
-rw-r--r--makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/makefile b/makefile
index 3ef74a9..077e2aa 100644
--- a/makefile
+++ b/makefile
@@ -31,8 +31,10 @@ ifeq ($(BUILD_MODE), COV_GNU)
#$(error This build mode is only useable with clang++.)
#endif
EXTRA_CXX_FALGS=-I$(shell $(LLVM_CONF) --src-root)/tools/clang/include -I$(shell $(LLVM_CONF) --obj-root)/tools/clang/include\
- -std=c++11 -UNDEBUG -fprofile-arcs -ftest-coverage -fexceptions
-EXTRA_LD_FLAGS=-v tinyxml2/tinyxml2.o -fprofile-arcs -ftest-coverage
+ -std=c++11 -UNDEBUG -fprofile-arcs -ftest-coverage -fexceptions -Xclang -coverage-version='408*' -Xclang -coverage-cfg-checksum\
+ -Xclang -coverage-no-function-names-in-data
+EXTRA_LD_FLAGS=-v tinyxml2/tinyxml2.o -fprofile-arcs -ftest-coverage -fexceptions -Xclang -coverage-version='408*' -Xclang -coverage-cfg-checksum\
+ -Xclang -coverage-no-function-names-in-data
endif
ifeq ($(BUILD_MODE), COV_NO_CLANG)