27 lines
732 B
Plaintext
27 lines
732 B
Plaintext
|
executable("llc") {
|
||
|
deps = [
|
||
|
"//llvm/lib/Analysis",
|
||
|
"//llvm/lib/CodeGen",
|
||
|
"//llvm/lib/CodeGen/AsmPrinter",
|
||
|
"//llvm/lib/CodeGen/MIRParser",
|
||
|
"//llvm/lib/CodeGen/SelectionDAG",
|
||
|
"//llvm/lib/IR",
|
||
|
"//llvm/lib/IRReader",
|
||
|
"//llvm/lib/MC",
|
||
|
"//llvm/lib/Support",
|
||
|
"//llvm/lib/Target",
|
||
|
"//llvm/lib/Target:TargetsToBuild",
|
||
|
"//llvm/lib/Transforms/Scalar",
|
||
|
"//llvm/lib/Transforms/Utils",
|
||
|
"//llvm/lib/Transforms/Vectorize",
|
||
|
]
|
||
|
sources = [ "llc.cpp" ]
|
||
|
|
||
|
# Support plugins.
|
||
|
# FIXME: Disable dead stripping once other binaries are dead-stripped.
|
||
|
if (host_os != "mac" && host_os != "win") {
|
||
|
# Corresponds to export_executable_symbols() in cmake.
|
||
|
ldflags = [ "-rdynamic" ]
|
||
|
}
|
||
|
}
|