diff --git a/Firebase/Core/CHANGELOG.md b/Firebase/Core/CHANGELOG.md index 43bf86f6695..1201fa8683f 100644 --- a/Firebase/Core/CHANGELOG.md +++ b/Firebase/Core/CHANGELOG.md @@ -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. diff --git a/ZipBuilder/Sources/ZipBuilder/FrameworkBuilder.swift b/ZipBuilder/Sources/ZipBuilder/FrameworkBuilder.swift index 6203738f334..3c240c06abe 100755 --- a/ZipBuilder/Sources/ZipBuilder/FrameworkBuilder.swift +++ b/ZipBuilder/Sources/ZipBuilder/FrameworkBuilder.swift @@ -37,6 +37,7 @@ private enum Architecture: String, CaseIterable { } case arm64 + case arm64e case armv7 case i386 case x86_64 @@ -44,7 +45,7 @@ private enum Architecture: String, CaseIterable { /// 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 } }