blob: 88d4f0e66bfe9d7b9f9ad4cda5e0d9705da69b56 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// A simple wrapper for gcc.
// To compile, use this command:
// make TOOLNAME=llvmc_simple GRAPH=examples/Simple.td
include "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>]>;
|