From ae6d4190431b6c3fae90782136c17dcc6632c28b Mon Sep 17 00:00:00 2001 From: Scott Talbot Date: Thu, 15 Nov 2018 23:11:54 +1100 Subject: [PATCH] Provide separate valid architectures for the iOS Simulator --- Framework.xcconfig | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Framework.xcconfig b/Framework.xcconfig index d02cbd0fb4..8af2e77263 100644 --- a/Framework.xcconfig +++ b/Framework.xcconfig @@ -7,7 +7,8 @@ SKIP_INSTALL = YES SUPPORTED_PLATFORMS = iphoneos iphonesimulator appletvsimulator appletvos watchsimulator watchos macosx SDKROOT[sdk=iphone*] = iphoneos -VALID_ARCHS[sdk=iphone*] = arm64 armv7 armv7s +VALID_ARCHS[sdk=iphoneos*] = arm64 armv7 armv7s +VALID_ARCHS[sdk=iphonesimulator*] = x86_64 i386 IPHONEOS_DEPLOYMENT_TARGET = 9.0 TARGETED_DEVICE_FAMILY[sdk=iphone*] = 1,2 LD_RUNPATH_SEARCH_PATHS[sdk=iphone*] = $(inherited) @executable_path/Frameworks @loader_path/Frameworks