diff options
author | bloodstalker <thabogre@gmail.com> | 2017-02-07 06:05:22 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2017-02-07 06:05:22 +0000 |
commit | ca3fba2736228666d8f70e74c05e535f7c8dd073 (patch) | |
tree | ef071513a76fb4ad22ed4241d1ebb92b835f4458 /makefile | |
parent | trying to figure out where the headers are... (diff) | |
download | mutator-ca3fba2736228666d8f70e74c05e535f7c8dd073.tar.gz mutator-ca3fba2736228666d8f70e74c05e535f7c8dd073.zip |
added new options to cov_gnu
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -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) |