Skip to content

Commit 819d02d

Browse files
committed
fix(ci): rename remaining stale @llvm labels to toolchains_llvm_bootstrapped
The root BUILD.bazel, bazel/platforms/release_binaries.bzl, bazel/rules/testing/wine/wine_runtime.bzl, and rbe.bzl still referenced @llvm//constraints/libc and @llvm//platforms, which are not visible from the main repo map (the module is pinned as toolchains_llvm_bootstrapped). Rename them to the canonical name so analysis of //third_party/v8 pair targets no longer aborts on '//:local_linux'.
1 parent b486edd commit 819d02d

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ platform(
99
name = "local_linux",
1010
constraint_values = [
1111
# We mark the local platform as glibc-compatible because musl-built rust cannot dlopen proc macros.
12-
"@llvm//constraints/libc:gnu.2.28",
12+
"@toolchains_llvm_bootstrapped//constraints/libc:gnu.2.28",
1313
],
1414
parents = ["@platforms//host"],
1515
)

bazel/platforms/release_binaries.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def multiplatform_binaries(name, platforms = PLATFORMS):
1515
for platform in platforms:
1616
platform_data(
1717
name = name + "_" + platform,
18-
platform = "@llvm//platforms:" + platform,
18+
platform = "@toolchains_llvm_bootstrapped//platforms:" + platform,
1919
target = name,
2020
tags = ["manual"],
2121
)

bazel/rules/testing/wine/wine_runtime.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ _WINE_RUNTIME_DATA = [
1414
]
1515

1616
WINE_TEST_TARGET_COMPATIBLE_WITH = [
17-
"@llvm//constraints/libc:gnu.2.28",
17+
"@toolchains_llvm_bootstrapped//constraints/libc:gnu.2.28",
1818
"@platforms//cpu:x86_64",
1919
"@platforms//os:linux",
2020
]

rbe.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ platform(
1818
"@platforms//cpu:{cpu}",
1919
"@platforms//os:linux",
2020
"@bazel_tools//tools/cpp:clang",
21-
"@llvm//constraints/libc:gnu.2.28",
21+
"@toolchains_llvm_bootstrapped//constraints/libc:gnu.2.28",
2222
],
2323
exec_properties = {{
2424
# Ubuntu-based image that includes git, python3, dotslash, and other

0 commit comments

Comments
 (0)