-
Notifications
You must be signed in to change notification settings - Fork 541
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
Link to internal rustdocs#100 #108
Conversation
src/appendix-stupid-stats.md
Outdated
@@ -87,7 +87,7 @@ in [librustc_back](https://github.com/rust-lang/rust/tree/master/src/librustc_ba | |||
(which also contains some things used primarily during translation). | |||
|
|||
All these phases are coordinated by the driver. To see the exact sequence, look | |||
at the `compile_input` function in [librustc_driver/driver.rs](https://github.com/rust-lang/rust/tree/master/src/librustc_driver/driver.rs). | |||
at the `compile_input` function in [librustc_driver/driver.rs](https://doc.rust-lang.org/nightly/nightly-rustc/rustc_driver/driver/). |
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.
Let's link directly to the function:
https://doc.rust-lang.org/nightly/nightly-rustc/rustc_driver/driver/fn.compile_input.html
Thank you for starting on this! Super exciting. |
I went ahead and adjusted my nit. =) Assuming travis is happy, will merge. |
A couple of offending long lines:
|
9bdf929
to
70f3c27
Compare
70f3c27
to
a5dd5de
Compare
To create a drop-in compiler replacement or a compiler replacement, | ||
we leave most of compilation alone and customise the driver using its APIs. | ||
|
||
[compile-input]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_driver/driver/fn.compile_input.html | ||
|
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.
@mark-i-m @nikomatsakis Please let me know if these changes looks fine.
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.
👍 LGTM
Thanks! |
This PR is for issue #100 @mark-i-m @Michael-F-Bryan