forked from OSchip/llvm-project
[gn build] Port 88181375a3
This commit is contained in:
parent
88181375a3
commit
72d7989031
|
@ -1,6 +1,14 @@
|
||||||
|
import("//llvm/utils/TableGen/tablegen.gni")
|
||||||
|
|
||||||
|
tablegen("COFFOptions") {
|
||||||
|
visibility = [ ":JITLink" ]
|
||||||
|
args = [ "-gen-opt-parser-defs" ]
|
||||||
|
}
|
||||||
|
|
||||||
static_library("JITLink") {
|
static_library("JITLink") {
|
||||||
output_name = "LLVMJITLink"
|
output_name = "LLVMJITLink"
|
||||||
deps = [
|
deps = [
|
||||||
|
":COFFOptions",
|
||||||
"//llvm/lib/BinaryFormat",
|
"//llvm/lib/BinaryFormat",
|
||||||
"//llvm/lib/ExecutionEngine/Orc/Shared",
|
"//llvm/lib/ExecutionEngine/Orc/Shared",
|
||||||
"//llvm/lib/Object",
|
"//llvm/lib/Object",
|
||||||
|
@ -8,6 +16,7 @@ static_library("JITLink") {
|
||||||
]
|
]
|
||||||
sources = [
|
sources = [
|
||||||
"COFF.cpp",
|
"COFF.cpp",
|
||||||
|
"COFFDirectiveParser.cpp",
|
||||||
"COFFLinkGraphBuilder.cpp",
|
"COFFLinkGraphBuilder.cpp",
|
||||||
"COFF_x86_64.cpp",
|
"COFF_x86_64.cpp",
|
||||||
"DWARFRecordSectionSplitter.cpp",
|
"DWARFRecordSectionSplitter.cpp",
|
||||||
|
|
Loading…
Reference in New Issue