aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbloodstalker <thabogre@gmail.com>2020-03-12 11:30:53 +0000
committerbloodstalker <thabogre@gmail.com>2020-03-12 11:30:53 +0000
commit58c472ab39d081adeb7bcb4e301973f79e670a4c (patch)
tree9ae5175accebec258b40ccd5ce12982afc1f29bf
parentupdate (diff)
downloadcgrep-rc1.tar.gz
cgrep-rc1.zip
getting rid of libboost as a build dependency. that will come with the next release.v1.0.0.0rc1
-rw-r--r--makefile2
-rw-r--r--pch.hpp1
2 files changed, 1 insertions, 2 deletions
diff --git a/makefile b/makefile
index f149ec7..9653060 100644
--- a/makefile
+++ b/makefile
@@ -18,7 +18,7 @@ endif
CXX_EXTRA?=
CTAGS_I_PATH?=./
#LD_FLAGS= -lstdc++fs
-LD_FLAGS= -lboost_system -lboost_filesystem
+LD_FLAGS=
EXTRA_LD_FLAGS?=
ADD_SANITIZERS_CC= -g -fsanitize=address -fno-omit-frame-pointer
ADD_SANITIZERS_LD= -g -fsanitize=address
diff --git a/pch.hpp b/pch.hpp
index dcebacf..ec1da21 100644
--- a/pch.hpp
+++ b/pch.hpp
@@ -10,7 +10,6 @@
#include "clang/Tooling/CommonOptionsParser.h"
#include "clang/Tooling/Tooling.h"
#include "llvm/Support/raw_ostream.h"
-#include <boost/filesystem.hpp>
#include <cassert>
#include <cstdlib>
#include <dirent.h>