1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| import("//llvm/utils/TableGen/tablegen.gni")
tablegen("PPCGenExegesis") {
args = [ "-gen-exegesis" ]
td_file = "//llvm/lib/Target/PowerPC/PPC.td"
}
static_library("PowerPC") {
output_name = "LLVMExegesisPowerPC"
deps = [
":PPCGenExegesis",
# Exegesis reaches inside the Target/PowerPC tablegen internals and must
# depend on these Target/PowerPC-internal build targets.
"//llvm/lib/Target/PowerPC/MCTargetDesc",
]
sources = [
"Target.cpp",
]
include_dirs = [ "//llvm/lib/Target/PowerPC" ]
}
|