[llvm] 288fe8a - [gn] Make GlobalISel depend on SelectionDAG (#217335)
via llvm-commits
llvm-commits at lists.llvm.org
Wed Aug 19 06:09:55 PDT 2026
Author: Nico Weber
Date: 2026-08-19T09:09:50-04:00
New Revision: 288fe8ae86dfcaa9afdd45eb2cb88ce0f1e2caa4
URL: https://github.com/llvm/llvm-project/commit/288fe8ae86dfcaa9afdd45eb2cb88ce0f1e2caa4
DIFF: https://github.com/llvm/llvm-project/commit/288fe8ae86dfcaa9afdd45eb2cb88ce0f1e2caa4.diff
LOG: [gn] Make GlobalISel depend on SelectionDAG (#217335)
This dependency has been present in the CMake build for many years.
Suddenly, a bunch of binaries (e.g. llvm-extract) stopped linking
without it, so add it to the GN build too.
Added:
Modified:
llvm/utils/gn/secondary/llvm/lib/CodeGen/GlobalISel/BUILD.gn
Removed:
################################################################################
diff --git a/llvm/utils/gn/secondary/llvm/lib/CodeGen/GlobalISel/BUILD.gn b/llvm/utils/gn/secondary/llvm/lib/CodeGen/GlobalISel/BUILD.gn
index 5f86839bb90d1..49e87ed5a41a6 100644
--- a/llvm/utils/gn/secondary/llvm/lib/CodeGen/GlobalISel/BUILD.gn
+++ b/llvm/utils/gn/secondary/llvm/lib/CodeGen/GlobalISel/BUILD.gn
@@ -5,6 +5,7 @@ static_library("GlobalISel") {
"//llvm/include/llvm/Config:llvm-config",
"//llvm/lib/Analysis",
"//llvm/lib/CodeGen",
+ "//llvm/lib/CodeGen/SelectionDAG",
"//llvm/lib/IR",
"//llvm/lib/MC",
"//llvm/lib/Support",
More information about the llvm-commits
mailing list