summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMinh Nguyễn <mxn@1ec5.org>2016-04-14 09:55:30 -0700
committerMinh Nguyễn <mxn@1ec5.org>2016-04-16 22:46:23 -0700
commitb3be8ee8f7c71bc520eaacba1839b22cb5e5dd03 (patch)
treec4520c35d1c4e2323f6531f4adf2e554494171b1
parent7a38e568191a68e3311d36296e14c105b12c051c (diff)
downloadqtlocation-mapboxgl-b3be8ee8f7c71bc520eaacba1839b22cb5e5dd03.tar.gz
[ios] Removed armv7s slice from iOS gyp targets
All gyp-generated iOS targets build for the standard architectures, which do not include armv7s. Fixes #4704.
-rw-r--r--platform/ios/CHANGELOG.md1
-rw-r--r--platform/ios/platform.gyp7
2 files changed, 1 insertions, 7 deletions
diff --git a/platform/ios/CHANGELOG.md b/platform/ios/CHANGELOG.md
index d450401b94..6a433bb972 100644
--- a/platform/ios/CHANGELOG.md
+++ b/platform/ios/CHANGELOG.md
@@ -5,6 +5,7 @@ Mapbox welcomes participation and contributions from everyone. If you’d like
## master
- Applications linking against the SDK static framework no longer need to add `-ObjC` to the Other Linker Flags (`OTHER_LDFLAGS`) build setting. If you previously added this flag solely for this SDK, removing the flag may potentially reduce the overall size of your application. ([#4641](https://github.com/mapbox/mapbox-gl-native/pull/4641))
+- Removed the `armv7s` slice from the SDK to reduce its size. iPhone 5 and iPhone 5c automatically use the `armv7` slice instead. ([#4641](https://github.com/mapbox/mapbox-gl-native/pull/4641))
- User location heading updates now resume properly when an app becomes active again. ([#4674](https://github.com/mapbox/mapbox-gl-native/pull/4674))
- Removed unused SVG files from the SDK’s resource bundle. ([#4641](https://github.com/mapbox/mapbox-gl-native/pull/4641))
diff --git a/platform/ios/platform.gyp b/platform/ios/platform.gyp
index eefa4c152d..2b1275396d 100644
--- a/platform/ios/platform.gyp
+++ b/platform/ios/platform.gyp
@@ -23,13 +23,6 @@
'GCC_VERSION': 'com.apple.compilers.llvm.clang.1_0',
'CODE_SIGN_IDENTITY': 'iPhone Developer',
},
- 'configurations': {
- 'Release': {
- 'xcode_settings': {
- 'ARCHS': [ "armv7", "armv7s", "arm64", "i386", "x86_64" ],
- },
- },
- },
}],
],
},