aboutsummaryrefslogtreecommitdiffstats
path: root/makefile
diff options
context:
space:
mode:
authorbloodstalker <thabogre@gmail.com>2016-12-15 18:53:23 +0000
committerbloodstalker <thabogre@gmail.com>2016-12-15 18:53:23 +0000
commite4c347ca65f24e5aa7145687ca9a089d90d6dc0b (patch)
treee8ad1818058029d0f83fec3be0bddffe7ac60f53 /makefile
parentreverted the change (diff)
downloadmutator-e4c347ca65f24e5aa7145687ca9a089d90d6dc0b.tar.gz
mutator-e4c347ca65f24e5aa7145687ca9a089d90d6dc0b.zip
reverted the change
Diffstat (limited to 'makefile')
-rw-r--r--makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/makefile b/makefile
index 186fd6e..f2e112e 100644
--- a/makefile
+++ b/makefile
@@ -5,7 +5,7 @@ LLVM_CONF?=llvm-config
CXX_FLAGS=$(shell $(LLVM_CONF) --cxxflags)
-EXTRA_CXX_FALGS=-I$(shell $(LLVM_CONF) --src-root)/tools/clang/include -I$(shell $(LLVM_CONF) --obj-root)/tools/clang/include -std=c++11
+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++
EXTRA_LD_FLAGS=-v tinyxml2/tinyxml2.o
LD_FLAGS=-Wl,--start-group -lclangAST -lclangAnalysis -lclangBasic\
@@ -13,7 +13,7 @@ LD_FLAGS=-Wl,--start-group -lclangAST -lclangAnalysis -lclangBasic\
-lclangLex -lclangParse -lclangSema -lclangEdit -lclangASTMatchers\
-lclangRewrite -lclangRewriteFrontend -lclangStaticAnalyzerFrontend\
-lclangStaticAnalyzerCheckers -lclangStaticAnalyzerCore\
--lclangSerialization -lclangToolingCore -lclangTooling -lpthread -Wl,--end-group
+-lclangSerialization -lclangToolingCore -lclangTooling -lstdc++ -Wl,--end-group
LD_FLAGS+=$(shell $(LLVM_CONF) --ldflags --libs --system-libs)
CXX_FLAGS+=$(EXTRA_CXX_FALGS)