We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb21690 commit 1471651Copy full SHA for 1471651
ReleaseTooling/Sources/ZipBuilder/FrameworkBuilder.swift
@@ -32,9 +32,8 @@ enum TargetPlatform: CaseIterable {
32
case .iOSDevice: return [.armv7, .arm64]
33
// Include arm64 slices in the simulator for Apple silicon Macs.
34
case .iOSSimulator: return [.i386, .x86_64, .arm64]
35
- // TODO: Evaluate arm64 slice for Catalyst Apple silicon Macs, and x86_64h. Previous builds were
36
- // limited to x86_64.
37
- case .catalyst: return [.x86_64]
+ // TODO: Evaluate x86_64h slice. Previous builds were limited to x86_64.
+ case .catalyst: return [.x86_64, .arm64]
38
}
39
40
0 commit comments