Wang Nan | c7fb4f6 | 2016-11-26 07:03:32 +0000 | [diff] [blame] | 1 | #include "clang/Basic/VirtualFileSystem.h" |
| 2 | #include "clang/Driver/Driver.h" |
| 3 | #include "clang/Frontend/TextDiagnosticPrinter.h" |
| 4 | #include "llvm/ADT/IntrusiveRefCntPtr.h" |
| 5 | #include "llvm/Support/ManagedStatic.h" |
| 6 | #include "llvm/Support/raw_ostream.h" |
| 7 | |
| 8 | using namespace clang; |
| 9 | using namespace clang::driver; |
| 10 | |
| 11 | int main() |
| 12 | { |
| 13 | IntrusiveRefCntPtr<DiagnosticIDs> DiagID(new DiagnosticIDs()); |
| 14 | IntrusiveRefCntPtr<DiagnosticOptions> DiagOpts = new DiagnosticOptions(); |
| 15 | |
| 16 | DiagnosticsEngine Diags(DiagID, &*DiagOpts); |
| 17 | Driver TheDriver("test", "bpf-pc-linux", Diags); |
| 18 | |
| 19 | llvm::llvm_shutdown(); |
| 20 | return 0; |
| 21 | } |