@@ -5,7 +5,7 @@ import Foundation
55
66
77/* ⚠️ Do not use the concurrency check flags in a release! */
8- let noSwiftSettings : [ SwiftSetting ] = [ ]
8+ let noSwiftSettings : [ SwiftSetting ] = [ ]
99//let concurrencySwiftSettings: [SwiftSetting] = [.unsafeFlags(["-Xfrontend", "-warn-concurrency", "-Xfrontend", "-enable-actor-data-race-checks"])]
1010
1111
@@ -40,9 +40,6 @@ let package = Package(
4040 res. append ( . package ( url: " https://github.com/xcode-actions/clt-logger.git " , from: " 1.0.0-beta.4 " ) )
4141 res. append ( . package ( url: " https://github.com/xcode-actions/stream-reader.git " , from: " 3.6.0 " ) )
4242 res. append ( . package ( url: " https://github.com/xcode-actions/swift-signal-handling.git " , . upToNextMinor( from: " 1.1.2 " ) ) )
43- #if !canImport(System)
44- res. append ( . package ( url: " https://github.com/apple/swift-system.git " , from: " 1.0.0 " ) )
45- #endif
4643 if useXtenderZ {
4744 res. append ( . package ( url: " https://github.com/Frizlab/eXtenderZ.git " , from: " 2.0.0 " ) )
4845 }
@@ -57,9 +54,6 @@ let package = Package(
5754 res. append ( . product( name: " SignalHandling " , package : " swift-signal-handling " ) )
5855 res. append ( . product( name: " StreamReader " , package : " stream-reader " ) )
5956 res. append ( . product( name: " UnwrapOrThrow " , package : " UnwrapOrThrow " ) )
60- #if !canImport(System)
61- res. append ( . product( name: " SystemPackage " , package : " swift-system " ) )
62- #endif
6357 res. append ( . target( name: " CMacroExports " ) )
6458 if useXtenderZ {
6559 res. append ( . product( name: " eXtenderZ-static " , package : " eXtenderZ " ) )
@@ -78,9 +72,7 @@ let package = Package(
7872 res. append ( . product( name: " ArgumentParser " , package : " swift-argument-parser " ) )
7973 res. append ( . product( name: " CLTLogger " , package : " clt-logger " ) )
8074 res. append ( . product( name: " Logging " , package : " swift-log " ) )
81- #if !canImport(System)
82- res. append ( . product( name: " SystemPackage " , package : " swift-system " ) )
83- #endif
75+ res. append ( . product( name: " StreamReader " , package : " stream-reader " ) )
8476 res. append ( . target( name: " CMacroExports " ) )
8577 if needsGNUSourceExports {
8678 res. append ( . target( name: " CGNUSourceExports " ) )
@@ -94,9 +86,6 @@ let package = Package(
9486 res. append ( . product( name: " CLTLogger " , package : " clt-logger " ) )
9587 res. append ( . product( name: " Logging " , package : " swift-log " ) )
9688 res. append ( . product( name: " StreamReader " , package : " stream-reader " ) )
97- #if !canImport(System)
98- res. append ( . product( name: " SystemPackage " , package : " swift-system " ) )
99- #endif
10089 if needsGNUSourceExports {
10190 res. append ( . target( name: " CGNUSourceExportsForTests " ) )
10291 }
0 commit comments