Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
32 lines
898 B
Diff
32 lines
898 B
Diff
diff --git a/build/toolchain/linux/unbundle/BUILD.gn b/build/toolchain/linux/unbundle/BUILD.gn
|
|
index a091491236bb1..d36fd4e652fbf 100644
|
|
--- a/build/toolchain/linux/unbundle/BUILD.gn
|
|
+++ b/build/toolchain/linux/unbundle/BUILD.gn
|
|
@@ -9,6 +9,7 @@ gcc_toolchain("default") {
|
|
cxx = getenv("CXX")
|
|
ar = getenv("AR")
|
|
nm = getenv("NM")
|
|
+ readelf = getenv("READELF")
|
|
ld = cxx
|
|
|
|
extra_cflags = getenv("CFLAGS")
|
|
@@ -27,6 +28,7 @@ gcc_toolchain("host") {
|
|
cxx = getenv("BUILD_CXX")
|
|
ar = getenv("BUILD_AR")
|
|
nm = getenv("BUILD_NM")
|
|
+ readelf = getenv("BUILD_READELF")
|
|
ld = cxx
|
|
|
|
extra_cflags = getenv("BUILD_CFLAGS")
|
|
@@ -35,7 +37,8 @@ gcc_toolchain("host") {
|
|
extra_ldflags = getenv("BUILD_LDFLAGS")
|
|
|
|
toolchain_args = {
|
|
- current_cpu = current_cpu
|
|
- current_os = current_os
|
|
+ current_cpu = host_cpu
|
|
+ current_os = host_os
|
|
+ v8_current_cpu = target_cpu
|
|
}
|
|
}
|