blob: b974cbc95eb69fc0393a6a9fe11762b417e018a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
// A simple wrapper for gcc.
// To compile, use this command:
//
// $ cd $LLVMC2_DIR
// $ make DRIVER_NAME=mygcc BUILTIN_PLUGINS=Simple
//
// To build this plugin as a dynamic library:
//
// $ cd $LLVMC2_DIR
// $ make BUILTIN_PLUGINS=""
// $ cd plugins/Simple
// $ make
//
// Run as:
//
// $ llvmc2 -load $LLVM_DIR/Release/lib/LLVMCSimple.so
include "llvm/CompilerDriver/Common.td"
def gcc : Tool<
[(in_language "c"),
(out_language "executable"),
(output_suffix "out"),
(cmd_line "gcc $INFILE -o $OUTFILE"),
(sink)
]>;
def LanguageMap : LanguageMap<[LangToSuffixes<"c", ["c"]>]>;
def CompilationGraph : CompilationGraph<[Edge<"root", "gcc">]>;
|