File tree Expand file tree Collapse file tree 3 files changed +3
-9
lines changed
tools/swift-plugin-server Expand file tree Collapse file tree 3 files changed +3
-9
lines changed Original file line number Diff line number Diff line change @@ -58,9 +58,6 @@ private extension Target {
5858let package = Package (
5959 name: " SwiftCompilerSources " ,
6060 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.
6461 . macOS( . v13) ,
6562 ] ,
6663 products: [
Original file line number Diff line number Diff line change @@ -36,16 +36,13 @@ let swiftSetttings: [SwiftSetting] = [
3636 " -Xcc " , " -I \( swiftSourceDirectory) /../build/Default/swift/include " ,
3737 " -Xcc " , " -I \( swiftSourceDirectory) /../build/Default/llvm/include " ,
3838 " -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 " ,
4239 ] ) ,
4340]
4441
4542let package = Package (
4643 name: " swiftSwiftCompiler " ,
4744 platforms: [
48- . macOS( . v10_15 )
45+ . macOS( . v13 )
4946 ] ,
5047 products: [
5148 . 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
22
33import PackageDescription
44
55let package = Package (
66 name: " swift-plugin-server " ,
77 platforms: [
8- . macOS( . v10_15 )
8+ . macOS( . v13 )
99 ] ,
1010 products: [
1111 . executable( name: " swift-plugin-server " , targets: [ " swift-plugin-server " ] ) ,
You can’t perform that action at this time.
0 commit comments