diff options
author | John Firebaugh <john.firebaugh@gmail.com> | 2016-04-11 20:31:48 -0700 |
---|---|---|
committer | John Firebaugh <john.firebaugh@gmail.com> | 2016-04-11 21:21:36 -0700 |
commit | 88ea342580ccbba74412373baa456e3fd445d5ba (patch) | |
tree | 9ccab5468fc8500527793e1fad339cb92dd5699f /Makefile | |
parent | d8d3690010170a4930adbdc64a88dcec43b7f3d4 (diff) | |
download | qtlocation-mapboxgl-88ea342580ccbba74412373baa456e3fd445d5ba.tar.gz |
[ios] Build only i386
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -44,7 +44,9 @@ $(IOS_PROJ_PATH): platform/ios/platform.gyp platform/ios/scripts/configure.sh mb $(RUN) PLATFORM=ios Xcode/__project__ ios: $(IOS_PROJ_PATH) - set -o pipefail && xcodebuild -configuration $(BUILDTYPE) -sdk iphonesimulator \ + set -o pipefail && xcodebuild \ + ARCHS=i386 ONLY_ACTIVE_ARCH=YES \ + -configuration $(BUILDTYPE) -sdk iphonesimulator \ -destination 'platform=iOS Simulator,name=iPhone 6,OS=latest' \ -project $(IOS_PROJ_PATH) -target All build | xcpretty |