Skip to content

Add arm64e to the zip build #4342

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 18, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions Firebase/Core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# Unreleased
- [added] Updated the binary distributions to include arm64e slices. See
https://developer.apple.com/documentation/security/preparing_your_app_to_work_with_pointer_authentication.
Support for the open source libraries is now included in the zip and Carthage
distributions. Support for the closed source libraries (Analytics, Performance,
and MLKit will be included the next time they release. (#4110)

# v6.4.0 -- M60
- [changed] Administrative minor version update to prepare for an upcoming Firebase pod
open source.
Expand Down
3 changes: 2 additions & 1 deletion ZipBuilder/Sources/ZipBuilder/FrameworkBuilder.swift
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,15 @@ private enum Architecture: String, CaseIterable {
}

case arm64
case arm64e
case armv7
case i386
case x86_64

/// The platform associated with the architecture.
var platform: TargetPlatform {
switch self {
case .arm64, .armv7: return .device
case .arm64, .arm64e, .armv7: return .device
case .i386, .x86_64: return .simulator
}
}
Expand Down