Skip to content

Commit 3146197

Browse files
authored
Merge pull request swiftlang#28264 from CodaFi/command-and-control
[Gardening] Clean up after swiftlang#16227
2 parents 0100d7c + ac99f18 commit 3146197

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -155,26 +155,26 @@ First, make sure that you're in the swift directory:
155155

156156
To build using Ninja, run:
157157

158-
swift/utils/build-script --release-debuginfo
158+
utils/build-script --release-debuginfo
159159

160160
When developing Swift, it helps to build what you're working on in a debug
161161
configuration while building the rest of the project with optimizations. Below
162162
are some examples of using debug variants:
163163

164-
swift/utils/build-script --release-debuginfo --debug-swift # Swift frontend built in debug
165-
swift/utils/build-script --release-debuginfo --debug-swift-stdlib # Standard library built in debug
166-
swift/utils/build-script --release-debuginfo --debug-swift --force-optimized-typechecker # Swift frontend sans type checker built in debug
164+
utils/build-script --release-debuginfo --debug-swift # Swift frontend built in debug
165+
utils/build-script --release-debuginfo --debug-swift-stdlib # Standard library built in debug
166+
utils/build-script --release-debuginfo --debug-swift --force-optimized-typechecker # Swift frontend sans type checker built in debug
167167

168168
Limiting the amount of debug code in the compiler has a very large impact on
169169
Swift compile times, and in turn the test execution time. If you want to build
170170
the entire project in debug, you can run:
171171

172-
swift/utils/build-script --debug
172+
utils/build-script --debug
173173

174174
For documentation of all available arguments, as well as additional usage
175175
information, see the inline help:
176176

177-
swift/utils/build-script -h
177+
utils/build-script -h
178178

179179
#### Xcode
180180

0 commit comments

Comments
 (0)