From 0253c3a979322cb4bbb4310be73efbde61a779df Mon Sep 17 00:00:00 2001 From: Dave Tapuska Date: Fri, 3 Feb 2023 12:11:01 -0500 Subject: [PATCH] [ios] Fix an additional build failure on iOS. - Adjust an is_mac to is_apple Bug: chromium:1411704 Change-Id: I2456f8b4f793b37f4b64782e8403dd4fc84b0807 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/4221871 Reviewed-by: Michael Lippautz Commit-Queue: Dave Tapuska Cr-Commit-Position: refs/heads/main@{#85652} --- BUILD.gn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BUILD.gn b/BUILD.gn index 024740c429..8ed736b5c0 100644 --- a/BUILD.gn +++ b/BUILD.gn @@ -5163,7 +5163,7 @@ v8_source_set("v8_base_without_compiler") { if (v8_enable_webassembly) { # Trap handling is enabled on arm64 Mac and in simulators on x64 on Linux, # Mac, and Windows. - if ((current_cpu == "arm64" && is_mac) || + if ((current_cpu == "arm64" && is_apple) || (current_cpu == "x64" && (is_linux || is_chromeos || is_mac))) { sources += [ "src/trap-handler/handler-inside-posix.cc",