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:
7676 Generate a target for C/C++ files in the standard library (default: --stdlib)
7777 --stdlib-swift/--no-stdlib-swift
7878 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)
8186 --test-folders/--no-test-folders
8287 Add folder references for test files (default: --test-folders)
8388 --unittests/--no-unittests
Original file line number Diff line number Diff line change @@ -164,8 +164,13 @@ struct ProjectOptions: ParsableArguments {
164164 name: . customLong( " stdlib-swift " ) , inversion: . prefixedNo,
165165 help: """
166166 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.
169174 """
170175 )
171176 var addStdlibSwift : Bool = false
You can’t perform that action at this time.
0 commit comments