commit | 68800e6c0d18ebd157d14e34cde83cd15452fac4 | [log] [tgz] |
---|---|---|
author | Ivan Inozemtsev <ivan.inozemtsev@gmail.com> | Wed Nov 27 14:28:21 2024 +0000 |
committer | Commit Queue <dart-scoped@luci-project-accounts.iam.gserviceaccount.com> | Wed Nov 27 14:28:21 2024 +0000 |
tree | 031dd2715c4f9618b0b5a8ca5a5fa75788b1a67b | |
parent | e2f799a1bd4787e48f9213473d171031aea6f801 [diff] |
Fix toolchain_cpu for clang_x64 android toolchain 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 https://github.com/dart-lang/sdk/issues/59621 Change-Id: Icf3a36c2b6d58c5979bb71ea67a864b658abc514 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/397901 Reviewed-by: Slava Egorov <vegorov@google.com> Commit-Queue: Ivan Inozemtsev <iinozemtsev@google.com>
diff --git a/build/toolchain/android/BUILD.gn b/build/toolchain/android/BUILD.gn index 216a197..031b4ff 100644 --- a/build/toolchain/android/BUILD.gn +++ b/build/toolchain/android/BUILD.gn
@@ -20,7 +20,7 @@ } android_toolchain_suite("clang_x64") { - toolchain_cpu = "x86_64" + toolchain_cpu = "x64" } android_toolchain_suite("clang_arm64") {