[llvm] acdd3cc - [gn] manually re-sync llvm-exegesis tool deps
Nico Weber via llvm-commits
llvm-commits at lists.llvm.org
Sun Nov 26 13:43:17 PST 2023
Author: Nico Weber
Date: 2023-11-27T06:42:55+09:00
New Revision: acdd3cc1785f5f002dbde48ccd9140578e5b59c9
URL: https://github.com/llvm/llvm-project/commit/acdd3cc1785f5f002dbde48ccd9140578e5b59c9
DIFF: https://github.com/llvm/llvm-project/commit/acdd3cc1785f5f002dbde48ccd9140578e5b59c9.diff
LOG: [gn] manually re-sync llvm-exegesis tool deps
As far as I can tell, the non-lib part never depended on MCJIT,
so I'm not sure why I added that. While here, re-sync some other
deps.
Since there's no shared library build for the gn build, no real
behavior change.
Added:
Modified:
llvm/utils/gn/secondary/llvm/tools/llvm-exegesis/BUILD.gn
llvm/utils/gn/secondary/llvm/tools/llvm-exegesis/lib/BUILD.gn
Removed:
################################################################################
diff --git a/llvm/utils/gn/secondary/llvm/tools/llvm-exegesis/BUILD.gn b/llvm/utils/gn/secondary/llvm/tools/llvm-exegesis/BUILD.gn
index 41dd853e40efd7d..d1369fae4a6aa64 100644
--- a/llvm/utils/gn/secondary/llvm/tools/llvm-exegesis/BUILD.gn
+++ b/llvm/utils/gn/secondary/llvm/tools/llvm-exegesis/BUILD.gn
@@ -4,9 +4,7 @@ executable("llvm-exegesis") {
deps = [
"lib",
"//llvm/lib/CodeGen",
- "//llvm/lib/CodeGen",
- "//llvm/lib/ExecutionEngine",
- "//llvm/lib/ExecutionEngine/MCJIT",
+ "//llvm/lib/DebugInfo/Symbolize",
"//llvm/lib/MC",
"//llvm/lib/Object",
"//llvm/lib/Support",
diff --git a/llvm/utils/gn/secondary/llvm/tools/llvm-exegesis/lib/BUILD.gn b/llvm/utils/gn/secondary/llvm/tools/llvm-exegesis/lib/BUILD.gn
index 5a429d36410c564..8f5c5ebc9021cbf 100644
--- a/llvm/utils/gn/secondary/llvm/tools/llvm-exegesis/lib/BUILD.gn
+++ b/llvm/utils/gn/secondary/llvm/tools/llvm-exegesis/lib/BUILD.gn
@@ -9,8 +9,11 @@ static_library("lib") {
"//llvm/lib/CodeGen/GlobalISel",
"//llvm/lib/ExecutionEngine",
"//llvm/lib/ExecutionEngine/Orc",
+ "//llvm/lib/ExecutionEngine/RuntimeDyld",
"//llvm/lib/IR",
"//llvm/lib/MC",
+ "//llvm/lib/MC/MCDisassembler",
+ "//llvm/lib/MC/MCParser",
"//llvm/lib/MCA",
"//llvm/lib/Object",
"//llvm/lib/ObjectYAML",
More information about the llvm-commits
mailing list