citrun

watch C/C++ source code execute
Log | Files | Refs | LICENSE

commit 3aa602c158f92d51cb251472c3b355826b9da8f3
parent 2108bd96c2c4af358c11b7fb242ef24370b5031a
Author: kyle <kyle@getaddrinfo.net>
Date:   Sun, 25 Oct 2015 17:28:55 -0600

Makefile: remove some unneeded libraries

Diffstat:
MMakefile | 10++++------
1 file changed, 4 insertions(+), 6 deletions(-)

diff --git a/Makefile b/Makefile @@ -4,13 +4,11 @@ CXXFLAGS += -std=c++1y -fno-rtti -g CXX = eg++ LDLIBS += \ - -lclangFrontendTool -lclangFrontend -lclangDriver \ - -lclangSerialization -lclangCodeGen -lclangParse \ - -lclangSema -lclangStaticAnalyzerFrontend \ - -lclangStaticAnalyzerCheckers -lclangStaticAnalyzerCore \ - -lclangAnalysis -lclangARCMigrate -lclangRewriteCore -lclangRewriteFrontend \ + -lclangFrontend -lclangDriver -lclangSerialization -lclangParse \ + -lclangSema -lclangAnalysis -lclangRewriteCore -lclangRewriteFrontend \ -lclangEdit -lclangAST -lclangLex -lclangBasic -lclangTooling \ - -lLLVMOption -lLLVMMCParser -lLLVMTransformUtils -lLLVMMC -lLLVMBitReader -lLLVMCore -lLLVMSupport \ + -lLLVMOption -lLLVMMCParser -lLLVMTransformUtils -lLLVMMC -lLLVMBitReader \ + -lLLVMCore -lLLVMSupport \ -lpthread -lz instrument: instrument.cpp