mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-19 17:37:24 +00:00
9d1b696441
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@56998 91177308-0d34-0410-b5e6-96231b3b80d8
18 lines
362 B
TableGen
18 lines
362 B
TableGen
// 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>]>;
|