diff options
author | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2020-10-30 18:47:42 +0200 |
---|---|---|
committer | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2020-10-30 18:47:42 +0200 |
commit | 4efcec354570a749b2461c61f2d9a436398f2553 (patch) | |
tree | a3681595d8bdbb8fb8e4e88ff64cc4e7139aef3f /platform/iphone/detect.py | |
parent | 41f66761fd8e41760dbffce9b9a4a4d8ceb7af0b (diff) |
[iOS] Add missing ARC flag to the simulator build.
Diffstat (limited to 'platform/iphone/detect.py')
-rw-r--r-- | platform/iphone/detect.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/iphone/detect.py b/platform/iphone/detect.py index 5ebabdd3dc..ab453c353f 100644 --- a/platform/iphone/detect.py +++ b/platform/iphone/detect.py @@ -119,7 +119,7 @@ def configure(env): arch_flag = "i386" if env["arch"] == "x86" else env["arch"] env.Append( CCFLAGS=( - "-arch " + "-fobjc-arc -arch " + arch_flag + " -fobjc-abi-version=2 -fobjc-legacy-dispatch -fmessage-length=0 -fpascal-strings -fblocks" " -fasm-blocks -isysroot $IPHONESDK -mios-simulator-version-min=13.0" |