mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-30 07:22:55 +01:00
8a881d2717
themselves be configured via autoconf so its not a good substitition syntax for llvmc. Furthermore % is more llvmish :) llvm-svn: 15957
15 lines
454 B
Plaintext
15 lines
454 B
Plaintext
# 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%
|
|
optimizer.groks_dash_O=no
|
|
optimizer.groks_optimization=yes
|
|
assembler.command=llc %in% -o %out%
|
|
linker.command=llvm-link %in% -o %out%
|