diff options
author | bloodstalker <thabogre@gmail.com> | 2020-01-10 10:05:55 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2020-01-10 10:05:55 +0000 |
commit | 6468a599dc3e900f128c09e5d6efdb0135613bd7 (patch) | |
tree | 5c7aa8769ac0dbd8b5415fdff8c883aaefa86bb0 /makefile | |
parent | Merge pull request #8 from schra/fix/readme (diff) | |
download | cgrep-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-- | makefile | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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\ |