blob: 48853010425f6b381e80e3412f63c259679bcfb8 [file] [log] [blame]
// A simple wrapper for gcc.
// To compile, use this command:
// TOFIX
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>]>;