Skip to content
This repository was archived by the owner on Aug 14, 2022. It is now read-only.

Commit 66e2907

Browse files
authored
Merge pull request #136 from vgorloff/develop
RC 1.0.76
2 parents e37153f + 6e9b405 commit 66e2907

File tree

11 files changed

+19
-5
lines changed

11 files changed

+19
-5
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [1.0.76] - 2021-12-03
8+
* Updated to use Swift 5.5.1
9+
710
## [1.0.75] - 2021-12-02
811
* Updated to use Xcode 13.
912

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0.75
1+
1.0.76

lib/Builders/DispatchBuilder.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ module.exports = class DispatchBuilder extends Builder {
5757
5858
-D CMAKE_INSTALL_PREFIX=/
5959
-D CMAKE_BUILD_TYPE=Release
60+
-D CMAKE_OSX_DEPLOYMENT_TARGET=10.15
6061
6162
-D ENABLE_TESTING=NO
6263
-D ENABLE_SWIFT=YES

lib/Builders/FoundationBuilder.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ module.exports = class FoundationBuilder extends Builder {
7171
7272
-D CMAKE_INSTALL_PREFIX=/
7373
-D CMAKE_BUILD_TYPE=Release
74+
-D CMAKE_OSX_DEPLOYMENT_TARGET=10.15
7475
-D ENABLE_TESTING=NO
7576
7677
-D CMAKE_Swift_COMPILER=${swift.paths.builds}/bin/swiftc

lib/Builders/LLBBuilder.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ module.exports = class LLBBuilder extends Builder {
4545
cd ${this.paths.builds} && cmake
4646
-G Ninja
4747
-D CMAKE_BUILD_TYPE=Release
48+
-D CMAKE_OSX_DEPLOYMENT_TARGET=10.15
4849
-D CMAKE_INSTALL_PREFIX=/
4950
5051
-D CMAKE_Swift_FLAGS="-Xlinker -v -Xfrontend -target -Xfrontend ${hostArch}-apple-macos10.10 -target ${hostArch}-apple-macos10.10 -v"

lib/Builders/LLVMBuilder.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ module.exports = class LLVMBuilder extends Builder {
4141
-S ${this.paths.sources}/llvm
4242
-B ${this.paths.builds}
4343
-D CMAKE_BUILD_TYPE=Release
44+
-D CMAKE_OSX_DEPLOYMENT_TARGET=10.15
4445
-D LLVM_INCLUDE_EXAMPLES=false
4546
-D LLVM_INCLUDE_TESTS=false
4647
-D LLVM_INCLUDE_DOCS=false

lib/Builders/SwiftDriverBuilder.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ module.exports = class SwiftDriverBuilder extends Builder {
4747
-G Ninja
4848
-D CMAKE_INSTALL_PREFIX=/
4949
-D CMAKE_BUILD_TYPE=Release
50+
-D CMAKE_OSX_DEPLOYMENT_TARGET=10.15
5051
5152
-D TSC_DIR=${tsc.paths.builds}/cmake/modules
5253
-D LLBuild_DIR=${llb.paths.builds}/cmake/modules

lib/Builders/SwiftStdLibBuilder.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,7 @@ module.exports = class SwiftStdLibBuilder extends Builder {
107107
-D SWIFT_ANDROID_${this.arch.swiftArch}_ICU_DATA=${icu.paths.lib}/libicudataswift.so
108108
109109
-D CMAKE_BUILD_TYPE=Release
110+
-D CMAKE_OSX_DEPLOYMENT_TARGET=10.15
110111
111112
# build with the host compiler
112113
-D SWIFT_BUILD_RUNTIME_WITH_HOST_COMPILER=YES

lib/Builders/SwiftTSCBuilder.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ module.exports = class SwiftTSCBuilder extends Builder {
3737
cd ${this.paths.builds} && cmake
3838
-G Ninja
3939
-D CMAKE_BUILD_TYPE=Release
40+
-D CMAKE_OSX_DEPLOYMENT_TARGET=10.15
4041
-D CMAKE_INSTALL_PREFIX=/
4142
-D CMAKE_Swift_FLAGS="-sdk ${this.paths.xcMacOsSdkPath}"
4243
${this.paths.sources}

lib/Builders/YAMSBuilder.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ module.exports = class YAMSBuilder extends Builder {
3838
-G Ninja
3939
-D CMAKE_INSTALL_PREFIX=/
4040
-D CMAKE_BUILD_TYPE=Release
41+
-D CMAKE_OSX_DEPLOYMENT_TARGET=10.15
4142
${this.paths.sources}
4243
`;
4344
this.executeCommands(cmd);

0 commit comments

Comments
 (0)