forked from OSchip/llvm-project
[gn build] Merge r350341
Adds a build file for llvm-elfabi and makes check-llvm depend on it. llvm-svn: 350494
This commit is contained in:
parent
ea9d555b83
commit
08df157aac
|
@ -187,7 +187,6 @@ group("test") {
|
|||
# lit tests run.
|
||||
"//llvm/lib/LineEditor",
|
||||
"//llvm/lib/Testing/Support",
|
||||
"//llvm/lib/TextAPI",
|
||||
"//llvm/tools/bugpoint",
|
||||
"//llvm/tools/dsymutil",
|
||||
"//llvm/tools/llc",
|
||||
|
@ -208,6 +207,7 @@ group("test") {
|
|||
"//llvm/tools/llvm-dis",
|
||||
"//llvm/tools/llvm-dwarfdump",
|
||||
"//llvm/tools/llvm-dwp",
|
||||
"//llvm/tools/llvm-elfabi",
|
||||
"//llvm/tools/llvm-exegesis",
|
||||
"//llvm/tools/llvm-extract",
|
||||
"//llvm/tools/llvm-isel-fuzzer",
|
||||
|
|
|
@ -0,0 +1,12 @@
|
|||
executable("llvm-elfabi") {
|
||||
deps = [
|
||||
"//llvm/lib/Object",
|
||||
"//llvm/lib/Support",
|
||||
"//llvm/lib/TextAPI",
|
||||
]
|
||||
sources = [
|
||||
"ELFObjHandler.cpp",
|
||||
"ErrorCollector.cpp",
|
||||
"llvm-elfabi.cpp",
|
||||
]
|
||||
}
|
Loading…
Reference in New Issue