1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 10:42:39 +01:00

Revert "[gn build] Port 03f43b3aca36"

This reverts commit 45b6364e8d74f6038e94b760f017e03740acf725,
03f43b3aca36 was reverted in af39151f3c54.
This commit is contained in:
Nico Weber 2020-04-02 12:36:06 -04:00
parent d8fb1c1c6d
commit 0d00935cb5
2 changed files with 0 additions and 37 deletions

View File

@ -1,36 +0,0 @@
import("//llvm/utils/TableGen/tablegen.gni")
tablegen("Options") {
visibility = [ ":MachO2" ]
args = [ "-gen-opt-parser-defs" ]
}
static_library("MachO2") {
output_name = "lldMachO2"
configs += [ "//llvm/utils/gn/build:lld_code" ]
deps = [
":Options",
"//lld/Common",
"//llvm/lib/BinaryFormat",
"//llvm/lib/DebugInfo/DWARF",
"//llvm/lib/IR",
"//llvm/lib/LTO",
"//llvm/lib/MC",
"//llvm/lib/Object",
"//llvm/lib/Option",
"//llvm/lib/Support",
"//llvm/lib/Target:TargetsToBuild",
]
include_dirs = [ "." ]
sources = [
"Arch/X86_64.cpp",
"Driver.cpp",
"InputFiles.cpp",
"InputSection.cpp",
"OutputSegment.cpp",
"SymbolTable.cpp",
"Symbols.cpp",
"Target.cpp",
"Writer.cpp",
]
}

View File

@ -27,7 +27,6 @@ executable("lld") {
deps = [
"//lld/COFF",
"//lld/ELF",
"//lld/MachO:MachO2",
"//lld/MinGW",
"//lld/lib/Driver",
"//lld/wasm",