Skip to content

Commit

Permalink
Fix toolchain_cpu for clang_x64 android toolchain
Browse files Browse the repository at this point in the history
Similar to https://dart-review.googlesource.com/c/sdk/+/396260, it
looks like the value for `android_app_abi` was used for `cpu`, but
before https://dart-review.googlesource.com/c/sdk/+/392661 `current_cpu`
wasn't actually set to `toolchain_cpu`.

Fixes #59621

Change-Id: Icf3a36c2b6d58c5979bb71ea67a864b658abc514
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/397901
Reviewed-by: Slava Egorov <[email protected]>
Commit-Queue: Ivan Inozemtsev <[email protected]>
  • Loading branch information
iinozemtsev authored and Commit Queue committed Nov 27, 2024
1 parent e2f799a commit 68800e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/toolchain/android/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ android_toolchain_suite("clang_arm") {
}

android_toolchain_suite("clang_x64") {
toolchain_cpu = "x86_64"
toolchain_cpu = "x64"
}

android_toolchain_suite("clang_arm64") {
Expand Down

0 comments on commit 68800e6

Please sign in to comment.