diff options
author | bloodstalker <thabogre@gmail.com> | 2020-04-30 19:59:28 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2020-04-30 19:59:28 +0000 |
commit | 0f0799aec14477d27a0cd145b7c5b0e283591b6f (patch) | |
tree | 87b276d6d22df27444feac2ad33bf6c3c03e41e9 /cgrep.cpp | |
parent | removed the boost dependency again (diff) | |
download | cgrep-0f0799aec14477d27a0cd145b7c5b0e283591b6f.tar.gz cgrep-0f0799aec14477d27a0cd145b7c5b0e283591b6f.zip |
added a note regarding what to do when you get the `stddef.h not found`.
testscript is still WIP.
Diffstat (limited to '')
-rw-r--r-- | cgrep.cpp | 22 |
1 files changed, 21 insertions, 1 deletions
@@ -7,7 +7,27 @@ * */ /***********************************************************************************************/ /*included modules*/ -#include "pch.hpp" +#include "./cfe-extra/cfe_extra.h" +#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" +#include <cassert> +#include <cstdlib> +#include <dirent.h> +#include <fstream> +#include <iostream> +#include <regex> +#include <string> +#include <vector> /***********************************************************************************************/ /*used namespaces*/ using namespace llvm; |