Check for ios_simulator when building for x86_64

(cherry picked from commit 21f7bd0723be5ca594547074d01dd92e5bf35e9c)
This commit is contained in:
Ted Spikes 2022-09-11 09:21:41 +00:00 committed by Relintai
parent 900b76545e
commit f66c0b7d91

View File

@ -129,6 +129,10 @@ def configure(env):
env.Append(LINKFLAGS=["-miphoneos-version-min=10.0"])
if env["arch"] == "x86" or env["arch"] == "x86_64":
if not env["ios_simulator"]:
print("ERROR: Building for iOS with 'arch=x86_64' or 'arch=x86' requires 'ios_simulator=yes'.")
sys.exit(255)
env["ENV"]["MACOSX_DEPLOYMENT_TARGET"] = "10.9"
arch_flag = "i386" if env["arch"] == "x86" else env["arch"]
env.Append(