diff options
author | bloodstalker <thabogre@gmail.com> | 2018-12-20 00:24:59 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2018-12-20 00:24:59 +0000 |
commit | fa27c01c8666cb24821a0af3c58d6a23f8c54726 (patch) | |
tree | f3487fc8bd422932f42d0ec13dc9748ee8788608 /pch.hpp | |
parent | travis badge (diff) | |
download | cgrep-fa27c01c8666cb24821a0af3c58d6a23f8c54726.tar.gz cgrep-fa27c01c8666cb24821a0af3c58d6a23f8c54726.zip |
build uses pch now. kinda cool but our build time bottleneck seems to be linking
Diffstat (limited to '')
-rw-r--r-- | pch.hpp | 20 |
1 files changed, 20 insertions, 0 deletions
@@ -0,0 +1,20 @@ +#include <cassert> +#include <cstdlib> +#include <dirent.h> +#include <fstream> +#include <iostream> +#include <regex> +#include <string> +#include <vector> +#include "clang/AST/AST.h" +#include "clang/AST/ASTConsumer.h" +#include "clang/ASTMatchers/ASTMatchFinder.h" +#include "clang/ASTMatchers/ASTMatchers.h" +#include "clang/Basic/LLVM.h" +#include "clang/Frontend/CompilerInstance.h" +#include "clang/Frontend/FrontendActions.h" +#include "clang/Lex/Lexer.h" +#include "clang/Rewrite/Core/Rewriter.h" +#include "clang/Tooling/CommonOptionsParser.h" +#include "clang/Tooling/Tooling.h" +#include "llvm/Support/raw_ostream.h" |