File tree 3 files changed +3
-9
lines changed
tools/swift-plugin-server
3 files changed +3
-9
lines changed Original file line number Diff line number Diff line change @@ -58,9 +58,6 @@ private extension Target {
58
58
let package = Package (
59
59
name: " SwiftCompilerSources " ,
60
60
platforms: [
61
- // We need at least macOS 13 here to avoid hitting an availability error
62
- // for CxxStdlib. It's only needed for the package though, the CMake build
63
- // works fine with a lower deployment target.
64
61
. macOS( . v13) ,
65
62
] ,
66
63
products: [
Original file line number Diff line number Diff line change @@ -36,16 +36,13 @@ let swiftSetttings: [SwiftSetting] = [
36
36
" -Xcc " , " -I \( swiftSourceDirectory) /../build/Default/swift/include " ,
37
37
" -Xcc " , " -I \( swiftSourceDirectory) /../build/Default/llvm/include " ,
38
38
" -Xcc " , " -I \( swiftSourceDirectory) /../build/Default/llvm/tools/clang/include " ,
39
-
40
- // FIXME: Needed to work around an availability issue with CxxStdlib
41
- " -Xfrontend " , " -disable-target-os-checking " ,
42
39
] ) ,
43
40
]
44
41
45
42
let package = Package (
46
43
name: " swiftSwiftCompiler " ,
47
44
platforms: [
48
- . macOS( . v10_15 )
45
+ . macOS( . v13 )
49
46
] ,
50
47
products: [
51
48
. library( name: " swiftASTGen " , targets: [ " swiftASTGen " ] ) ,
Original file line number Diff line number Diff line change 1
- // swift-tools-version: 5.6
1
+ // swift-tools-version: 5.9
2
2
3
3
import PackageDescription
4
4
5
5
let package = Package (
6
6
name: " swift-plugin-server " ,
7
7
platforms: [
8
- . macOS( . v10_15 )
8
+ . macOS( . v13 )
9
9
] ,
10
10
products: [
11
11
. executable( name: " swift-plugin-server " , targets: [ " swift-plugin-server " ] ) ,
You can’t perform that action at this time.
0 commit comments