From fad03db91bf617e9bf6a502f7cd7ce8dcfaba2ad Mon Sep 17 00:00:00 2001 From: Zachary Anderson Date: Thu, 22 Jan 2026 10:39:25 -0800 Subject: [PATCH] DNS: Try banning using intel-hosted clang --- engine/src/build/toolchain/mac/BUILD.gn | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/engine/src/build/toolchain/mac/BUILD.gn b/engine/src/build/toolchain/mac/BUILD.gn index a3dfd6f2db9..15821c31cf6 100644 --- a/engine/src/build/toolchain/mac/BUILD.gn +++ b/engine/src/build/toolchain/mac/BUILD.gn @@ -54,13 +54,9 @@ tool_versions = exec_script( root_build_dir), "trim scope") -if (host_cpu == "arm64") { - rebased_clang_dir = - rebase_path("$buildtools_path/mac-arm64/clang/bin", root_build_dir) -} else { - rebased_clang_dir = - rebase_path("$buildtools_path/mac-x64/clang/bin", root_build_dir) -} +assert(host_cpu == "arm64") +rebased_clang_dir = + rebase_path("$buildtools_path/mac-arm64/clang/bin", root_build_dir) if (use_ccache) { # ccache only supports compilation, not linking.