Use the x64 host toolchain for x86 target gen_snapshot only on Linux (#12809)

This commit is contained in:
Jason Simmons 2019-10-04 15:07:38 -07:00 committed by GitHub
parent bba0065cf6
commit 60ce643b63
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -24,7 +24,7 @@ compiled_action("generate_snapshot_bin") {
# platform is 32-bit. Override this to create a 64-bit gen_snapshot for x86
# targets because some host platforms may not support 32-bit binaries.
tool = "//third_party/dart/runtime/bin:gen_snapshot_host_targeting_host"
if (target_cpu == "x86") {
if (target_cpu == "x86" && host_os == "linux") {
toolchain = "//build/toolchain/$host_os:clang_x64"
}