File tree Expand file tree Collapse file tree 2 files changed +2
-15
lines changed Expand file tree Collapse file tree 2 files changed +2
-15
lines changed Original file line number Diff line number Diff line change @@ -1461,13 +1461,7 @@ func grpcDependency() -> Package.Dependency {
14611461
14621462func swiftSyntaxDependency( ) -> Package . Dependency {
14631463 let url = " https://github.com/swiftlang/swift-syntax.git "
1464- #if swift(>=6.2)
1465- return . package ( url: url, from: " 602.0.0-latest " )
1466- #elseif swift(>=6.1)
1467- return . package ( url: url, from: " 601.0.0-latest " )
1468- #else
1469- return . package ( url: url, from: " 600.0.0-latest " )
1470- #endif
1464+ return . package ( url: url, from: " 600.0.0-latest " )
14711465}
14721466
14731467func firestoreWrapperTarget( ) -> Target {
Original file line number Diff line number Diff line change @@ -163,42 +163,35 @@ else
163163 iphone_simulator_name=" iPhone 16e"
164164 fi
165165 ios_flags=(
166- -sdk ' iphonesimulator'
167166 -destination " platform=iOS Simulator,name=${iphone_simulator_name} "
168167 )
169168 watchos_flags=(
170- -sdk ' watchsimulator'
171169 -destination ' platform=watchOS Simulator,name=Apple Watch Series 10 (42mm)'
172170 )
173171fi
174172
175173ios_device_flags=(
176- -sdk ' iphoneos'
177174 -destination ' generic/platform=iOS'
178175)
179176
180177ipad_flags=(
181- -sdk ' iphonesimulator'
182178 -destination ' platform=iOS Simulator,name=iPad Pro (9.7-inch)'
183179)
184180
185181macos_flags=(
186- -sdk ' macosx'
187182 -destination ' platform=OS X,arch=x86_64'
188183)
189184tvos_flags=(
190- -sdk " appletvsimulator"
191185 -destination ' platform=tvOS Simulator,name=Apple TV'
192186)
193187visionos_flags=(
194188 # As of Aug 15, 2025, the default OS "latest" was failing as it matched both
195189 # the visionOS 26 beta and visionOS 2.5 (from Xcode 16.4) simulators;
196190 # explicitly specifying OS=2.5 in destination as a workaround.
197- -sdk ' xrsimulator'
198191 -destination ' platform=visionOS Simulator,OS=2.5,name=Apple Vision Pro'
199192)
200193catalyst_flags=(
201- ARCHS=x86_64 VALID_ARCHS=x86_64 SUPPORTS_MACCATALYST=YES -sdk macosx
194+ ARCHS=x86_64 VALID_ARCHS=x86_64 SUPPORTS_MACCATALYST=YES
202195 -destination platform=" macOS,variant=Mac Catalyst,arch=x86_64" TARGETED_DEVICE_FAMILY=2
203196 CODE_SIGN_IDENTITY=- CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO
204197)
You can’t perform that action at this time.
0 commit comments