aboutsummaryrefslogtreecommitdiffstats
path: root/makefile
diff options
context:
space:
mode:
authorbloodstalker <thabogre@gmail.com>2020-01-10 10:05:55 +0000
committerbloodstalker <thabogre@gmail.com>2020-01-10 10:05:55 +0000
commit6468a599dc3e900f128c09e5d6efdb0135613bd7 (patch)
tree5c7aa8769ac0dbd8b5415fdff8c883aaefa86bb0 /makefile
parentMerge pull request #8 from schra/fix/readme (diff)
downloadcgrep-6468a599dc3e900f128c09e5d6efdb0135613bd7.tar.gz
cgrep-6468a599dc3e900f128c09e5d6efdb0135613bd7.zip
fixed the declaration prints. fixed the coloring of matches for non-declarations.
Diffstat (limited to 'makefile')
-rw-r--r--makefile3
1 files changed, 1 insertions, 2 deletions
diff --git a/makefile b/makefile
index e403348..a90f752 100644
--- a/makefile
+++ b/makefile
@@ -18,7 +18,7 @@ endif
CXX_EXTRA?=
CTAGS_I_PATH?=./
#LD_FLAGS= -lstdc++fs
-LD_FLAGS=
+LD_FLAGS= -lboost_system -lboost_filesystem
EXTRA_LD_FLAGS?=
ADD_SANITIZERS_CC= -g -fsanitize=address -fno-omit-frame-pointer
ADD_SANITIZERS_LD= -g -fsanitize=address
@@ -38,7 +38,6 @@ LLVM_CXX_FLAGS=$(shell $(LLVM_CONF) --cxxflags)
LLVM_CXX_FLAGS+=-I$(shell $(LLVM_CONF) --src-root)/tools/clang/include\
-I$(shell $(LLVM_CONF) --obj-root)/tools/clang/include\
-std=c++17 -fexceptions
-#LLVM_LD_FLAGS=-Wl,--start-group $(shell $(LLVM_CONF) --libs) -Wl, --end-group
LLVM_LD_FLAGS=-Wl,--start-group -lclangAST -lclangAnalysis -lclangBasic\
-lclangDriver -lclangEdit -lclangFrontend -lclangFrontendTool\
-lclangLex -lclangParse -lclangSema -lclangEdit -lclangASTMatchers\