blob: 3cc82175015f3a2bd1b28d4d55253fe98d7b9eec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# LLVM Assembly Config File For llvmc
lang.name=LLVM Assembly
preprocessor.command=
preprocessor.required=false
translator.command=llvm-as @in@ -o @out@
translator.groks_dash_O=no
translator.optimizes=no
translator.preprocesses=true
translator.required=TRUE
optimizer.command=opt @in@ -o @out@
assembler.command=llc @in@ -o @out@
linker.command=llvm-link @in@ -o @out@
|