Skip to content

Commit a2cb93e

Browse files
[docs] GettingStarted: Replace build variant suffix with asterisks in paths to --xcode build artifacts
The default build variant for `--xcode` recently changed from ReleaseAssert to MinSizeRelAssert, and we forgot to update these hardcoded paths. Use asterisks to avoid having to do this again.
1 parent a490db3 commit a2cb93e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/HowToGuides/GettingStarted.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -360,13 +360,13 @@ several more steps are necessary to set up this environment:
360360
* Create a new Xcode workspace.
361361
* Add the generated Xcode projects or Swift packages that are relevant to your
362362
tasks to your workspace. All the Xcode projects can be found among the
363-
build artifacts under `build/Xcode-ReleaseAssert`. For example:
364-
* If you are aiming for the compiler, add `build/Xcode-ReleaseAssert/swift-macosx-*/Swift.xcodeproj`.
363+
build artifacts under `build/Xcode-*/`. For example:
364+
* If you are aiming for the compiler, add `build/Xcode-*/swift-macosx-*/Swift.xcodeproj`.
365365
This project also includes the standard library and runtime sources. If you
366366
need the parts of the compiler that are implemented in Swift itself, add the
367367
`swift/SwiftCompilerSources/Package.swift` package as well.
368368
* If you are aiming for just the standard library or runtime, add
369-
`build/Xcode-ReleaseAssert/swift-macosx-*/stdlib/Swift-stdlib.xcodeproj`.
369+
`build/Xcode-*/swift-macosx-*/stdlib/Swift-stdlib.xcodeproj`.
370370
<!-- FIXME: Without this "hard" line break, the note doesn’t get properly spaced from the bullet -->
371371
<br />
372372

0 commit comments

Comments
 (0)