aboutsummaryrefslogtreecommitdiffstats
path: root/tinyxml2
diff options
context:
space:
mode:
authorbloodstalker <thabogre@gmail.com>2017-02-20 02:05:02 +0000
committerbloodstalker <thabogre@gmail.com>2017-02-20 02:05:02 +0000
commit6d219a37a6d8573f9c34cfadc4efd72732eb005e (patch)
tree4b02f4ea1353a5ed65474e38c7eda29812765548 /tinyxml2
parentfixed some build mode options (diff)
downloadmutator-6d219a37a6d8573f9c34cfadc4efd72732eb005e.tar.gz
mutator-6d219a37a6d8573f9c34cfadc4efd72732eb005e.zip
fixed some build mode options
Diffstat (limited to 'tinyxml2')
-rw-r--r--tinyxml2/makefile4
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