Skip to content

Commit b6d8bab

Browse files
authored
---
yaml --- r: 285181 b: refs/heads/master c: a6d5830 h: refs/heads/master i: 285179: ed7930a
1 parent 1ccb5d9 commit b6d8bab

File tree

181 files changed

+3673
-1581
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

181 files changed

+3673
-1581
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
refs/heads/master: e51b72b3e04facb8e4f4c5cf2eb05e2b54a40b0f
2+
refs/heads/master: a6d5830f79a598595c3ce48479fb14c3e27b5ce1
33
refs/heads/master-next: 90f691eef4aee378af27084030679214a1a39d50
44
refs/tags/osx-passed: b6b74147ef8a386f532cf9357a1bde006e552c54
55
refs/tags/swift-2.2-SNAPSHOT-2015-12-01-a: 6bb18e013c2284f2b45f5f84f2df2887dc0f7dea

trunk/CMakeLists.txt

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ set_property(CACHE SWIFT_ANALYZE_CODE_COVERAGE PROPERTY
123123
# SWIFT_VERSION is deliberately /not/ cached so that an existing build directory
124124
# can be reused when a new version of Swift comes out (assuming the user hasn't
125125
# manually set it as part of their own CMake configuration).
126-
set(SWIFT_VERSION "5.0")
126+
set(SWIFT_VERSION "5.1")
127127

128128
set(SWIFT_VENDOR "" CACHE STRING
129129
"The vendor name of the Swift compiler")
@@ -262,9 +262,15 @@ option(SWIFT_RUNTIME_CRASH_REPORTER_CLIENT
262262
set(SWIFT_DARWIN_XCRUN_TOOLCHAIN "XcodeDefault" CACHE STRING
263263
"The name of the toolchain to pass to 'xcrun'")
264264

265-
set(SWIFT_DARWIN_STDLIB_INSTALL_NAME_DIR "@rpath" CACHE STRING
265+
set(SWIFT_DARWIN_STDLIB_INSTALL_NAME_DIR "/usr/lib/swift" CACHE STRING
266266
"The directory of the install_name for standard library dylibs")
267267

268+
# We don't want to use the same install_name_dir as the standard library which
269+
# will be installed in /usr/lib/swift. These private libraries should continue
270+
# to use @rpath for now.
271+
set(SWIFT_DARWIN_STDLIB_PRIVATE_INSTALL_NAME_DIR "@rpath" CACHE STRING
272+
"The directory of the install_name for the private standard library dylibs")
273+
268274
set(SWIFT_DARWIN_DEPLOYMENT_VERSION_OSX "10.9" CACHE STRING
269275
"Minimum deployment target version for OS X")
270276

@@ -1051,6 +1057,12 @@ endif()
10511057
# https://bugs.swift.org/browse/SR-5975
10521058
if(SWIFT_BUILD_STDLIB)
10531059
add_subdirectory(stdlib)
1060+
else()
1061+
# Some tools (e.g. swift-reflection-dump) rely on a host swiftReflection, so
1062+
# ensure we build that when building tools.
1063+
if(SWIFT_INCLUDE_TOOLS)
1064+
add_subdirectory(stdlib/public/Reflection)
1065+
endif()
10541066
endif()
10551067

10561068
if(SWIFT_INCLUDE_APINOTES)

trunk/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
|**[macOS 10.13 (TensorFlow)](https://github.com/apple/swift-community-hosted-continuous-integration/blob/master/nodes/x86_64_macos_high_sierra_tensorflow.json)** | x86_64 |[![Build Status](https://ci-external.swift.org/job/oss-swift-RA-macOS-tensorflow/lastCompletedBuild/badge/icon)](https://ci-external.swift.org/job/oss-swift-RA-macOS-tensorflow)|
2626
|**[Ubuntu 16.04 (TensorFlow with GPU)](https://github.com/apple/swift-community-hosted-continuous-integration/blob/master/nodes/x86_64_ubuntu_16_04_tensorflow_gpu.json)** | x86_64 |[![Build Status](https://ci-external.swift.org/job/oss-swift-RA-linux-ubuntu-16.04-tensorflow-gpu/lastCompletedBuild/badge/icon)](https://ci-external.swift.org/job/oss-swift-RA-linux-ubuntu-16.04-tensorflow-gpu)|
2727
|**[Debian 9.5](https://github.com/apple/swift-community-hosted-continuous-integration/blob/master/nodes/x86_64_debian_9.5.json)** | x86_64 | [![Build Status](https://ci-external.swift.org/job/oss-swift-RA-linux-debian-9_5/lastCompletedBuild/badge/icon)](https://ci-external.swift.org/job/oss-swift-RA-linux-debian-9_5)|
28+
|**[Windows 2019](https://github.com/apple/swift-community-hosted-continuous-integration/blob/master/nodes/x86_64_windows_2019.json)** | x86_64 | [![Build Status](https://ci-external.swift.org/job/oss-swift-windows-x86_64/lastCompletedBuild/badge/icon)](https://ci-external.swift.org/job/oss-swift-windows-x86_64)|
2829

2930

3031
## Welcome to Swift

0 commit comments

Comments
 (0)