Skip to content
This repository has been archived by the owner on Jun 21, 2023. It is now read-only.

Commit

Permalink
Made changes to podspec for Xcode 12 build issues (#482)
Browse files Browse the repository at this point in the history
* added build config settings to exclude arm64 and arm64e

* added note regarding fix to changelog

* Remove whitespace

Co-authored-by: Nadia Barbosa <captainbarbosa@users.noreply.github.com>
Co-authored-by: Jordan Kiley <jmkiley@users.noreply.github.com>
  • Loading branch information
3 people authored Sep 30, 2020
1 parent 8689173 commit f95c11b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions platform/ios/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Mapbox welcomes participation and contributions from everyone. Please read [CONT
### 🐞 Bug fixes

* Fixed a bug with UIViews being incorrectly updated with a one frame delay. ([#483](https://github.com/mapbox/mapbox-gl-native-ios/pull/483))
* Fixed an issue where CocoaPods users could not install the SDK when using Xcode 12. ([#482](https://github.com/mapbox/mapbox-gl-native-ios/pull/82))

## 6.2.1 - September 23, 2020

Expand Down
5 changes: 5 additions & 0 deletions platform/ios/Mapbox-iOS-SDK.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,9 @@ Pod::Spec.new do |m|
m.preserve_path = '**/*.bcsymbolmap'

m.dependency "MapboxMobileEvents", "~> 0.10.4"

m.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64 arm64e' }

m.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64 arm64e' }

end

0 comments on commit f95c11b

Please sign in to comment.