From e13556e15720ec3bc55652cbdf520cb1fe0f1bc0 Mon Sep 17 00:00:00 2001 From: Benoit Blanchon Date: Wed, 21 Aug 2024 17:19:34 +0200 Subject: [PATCH] iOS: downgrade to Xcode 15.0.1 --- steps/01-install.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/steps/01-install.sh b/steps/01-install.sh index f01210a0..c2d75d07 100755 --- a/steps/01-install.sh +++ b/steps/01-install.sh @@ -111,4 +111,10 @@ case "$TARGET_OS" in win) echo "$WindowsSDK_DIR/$CURRENT_CPU" >> "$PATH_FILE" ;; + + ios) + # Xcode 15.4 produces the following error when targeting ARM64 with V8: + # undefined symbol: be_memory_inline_jit_restrict_rwx_to_rx_with_witness_impl + sudo xcode-select -s "/Applications/Xcode_15.0.1.app" + ;; esac