Skip to content

Commit 3b27e89

Browse files
authored
fix: update toolchain type to ppc64le from ppc (#3907)
Builds will fail due to the toolchain type not matching on `ppc64le` without this change. Note that `ppc64le` and `ppc` are different architectures. ## PR Type What kind of change does this PR introduce? - [x] Bugfix ## What is the current behavior? Builds fail on `ppc64le`. ## What is the new behavior? They don't fail due to the wrong toolchain type. ## Does this PR introduce a breaking change? - [ ] Yes - [x] No
1 parent 05e425c commit 3b27e89

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nodejs/private/nodejs_toolchains_repo.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ PLATFORMS = {
3939
"linux_ppc64le": struct(
4040
compatible_with = [
4141
"@platforms//os:linux",
42-
"@platforms//cpu:ppc",
42+
"@platforms//cpu:ppc64le",
4343
],
4444
),
4545
"darwin_amd64": struct(

0 commit comments

Comments
 (0)