File tree Expand file tree Collapse file tree 2 files changed +14
-4
lines changed Expand file tree Collapse file tree 2 files changed +14
-4
lines changed Original file line number Diff line number Diff line change @@ -76,8 +76,13 @@ PROJECT CONFIGURATION:
76
76
Generate a target for C/C++ files in the standard library (default: --stdlib)
77
77
--stdlib-swift/--no-stdlib-swift
78
78
Generate targets for Swift files in the standard library. This requires
79
- using Xcode with a main development snapshot (and as such is disabled
80
- by default). (default: --no-stdlib-swift)
79
+ using Xcode with a main development Swift snapshot, and as such is
80
+ disabled by default.
81
+
82
+ A development snapshot is necessary to avoid spurious build/live issues
83
+ due to the fact that the the stdlib is built using the just-built Swift
84
+ compiler, which may support features not yet supported by the Swift
85
+ compiler in Xcode's toolchain. (default: --no-stdlib-swift)
81
86
--test-folders/--no-test-folders
82
87
Add folder references for test files (default: --test-folders)
83
88
--unittests/--no-unittests
Original file line number Diff line number Diff line change @@ -164,8 +164,13 @@ struct ProjectOptions: ParsableArguments {
164
164
name: . customLong( " stdlib-swift " ) , inversion: . prefixedNo,
165
165
help: """
166
166
Generate targets for Swift files in the standard library. This requires
167
- using Xcode with a main development snapshot (and as such is disabled
168
- by default).
167
+ using Xcode with a main development Swift snapshot, and as such is
168
+ disabled by default.
169
+
170
+ A development snapshot is necessary to avoid spurious build/live issues
171
+ due to the fact that the the stdlib is built using the just-built Swift
172
+ compiler, which may support features not yet supported by the Swift
173
+ compiler in Xcode's toolchain.
169
174
"""
170
175
)
171
176
var addStdlibSwift : Bool = false
You can’t perform that action at this time.
0 commit comments