diff options
author | bloodstalker <thabogre@gmail.com> | 2017-02-20 02:05:02 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2017-02-20 02:05:02 +0000 |
commit | 6d219a37a6d8573f9c34cfadc4efd72732eb005e (patch) | |
tree | 4b02f4ea1353a5ed65474e38c7eda29812765548 /tinyxml2/makefile | |
parent | fixed some build mode options (diff) | |
download | mutator-6d219a37a6d8573f9c34cfadc4efd72732eb005e.tar.gz mutator-6d219a37a6d8573f9c34cfadc4efd72732eb005e.zip |
fixed some build mode options
Diffstat (limited to 'tinyxml2/makefile')
-rw-r--r-- | tinyxml2/makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tinyxml2/makefile b/tinyxml2/makefile index 41e5f07..2777bf8 100644 --- a/tinyxml2/makefile +++ b/tinyxml2/makefile @@ -29,7 +29,7 @@ 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 -stdlib=libstdc++ -UNDEBUG -fprofile-arcs -ftest-coverage + -std=c++11 -UNDEBUG -fprofile-arcs -ftest-coverage EXTRA_LD_FLAGS=-v tinyxml2/tinyxml2.o -fprofile-arcs -ftest-coverage endif @@ -53,7 +53,7 @@ ifneq ($(CXX), g++) $(error This build mode is only useable with g++.) 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 -stdlib=libstdc++ -UNDEBUG + -std=c++11 -static-libstdc++ -UNDEBUG EXTRA_LD_FLAGS=-v tinyxml2/tinyxml2.o endif |