-
Notifications
You must be signed in to change notification settings - Fork 10.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
docs: fix info about bootstrapping #63381
Conversation
|
@swift-ci smoke test |
| @@ -463,7 +460,7 @@ Now that you have made some changes, you will need to rebuild... | |||
|
|
|||
| To rebuild the compiler: | |||
| ```sh | |||
| ninja -C ../build/Ninja-RelWithDebInfoAssert/swift-macosx-$(uname -m) swift-frontend | |||
| ninja -C ../build/Ninja-RelWithDebInfoAssert/swift-macosx-$(uname -m) bin/swift-frontend | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
m)/bin with no space?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh, I see, the space is needed.
| @@ -257,7 +253,8 @@ Phew, that's a lot to digest! Now let's proceed to the actual build itself! | |||
|
|
|||
| > **Note** | |||
| > If you aren't planning to edit the parts of the compiler that are written | |||
| > in Swift, pass `--bootstrapping=off` to speed up local development. | |||
| > in Swift, pass `--bootstrapping=hosttools` to speed up local development. | |||
| > This requires a recent Xcode and/or swift toolchain to be installed. | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Will this bootstrapping mode work on Linux?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It should, but is not enabled on the linux CI.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Then I suppose the last sentence should be addressing Linux users, because Xcode is on the list of dependencies for macOS anyway.
|
Does this need to be updated as well? |
Yes, I missed that |
Don’t bother, I will see to it 🙂 |
#62017