From 60ce643b63e86d30dab3a64148cb2a0c2ad25676 Mon Sep 17 00:00:00 2001 From: Jason Simmons Date: Fri, 4 Oct 2019 15:07:38 -0700 Subject: [PATCH] Use the x64 host toolchain for x86 target gen_snapshot only on Linux (#12809) --- lib/snapshot/BUILD.gn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/snapshot/BUILD.gn b/lib/snapshot/BUILD.gn index 8d361a952c0..0d7faee7fa7 100644 --- a/lib/snapshot/BUILD.gn +++ b/lib/snapshot/BUILD.gn @@ -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" }