-
Notifications
You must be signed in to change notification settings - Fork 13k
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
rustdoc: use remap-path-prefix #69264
Comments
This should be fixed since https://github.com/rust-lang/rust/pull/83813/files#diff-04002bbcf90fc0a3356db4344dee8f1e03d868fa6c0f666713affa7fa2679b6f, I don't think it's tested through. |
To add one more item to the list, This is found when trying to resolve issues in #111540. I expect rustdoc to match the behavior of rustc. |
From Zulip t-rustdoc:
So we kinda get a green light for working on this. |
Taking a look. |
Rollup merge of rust-lang#128736 - GuillaumeGomez:fix-remap-path-prefix, r=notriddle Fix rustdoc missing handling of remap-path-prefix option Fixes rust-lang#69264. cc `@weihanglo` r? `@notriddle`
The rust compiler has an option
--remap-path-prefix
for remapping path prefixes. It's useful to avoid runtime messages that are independent of where the source code was located during the build.As far as I can tell that doesn't apply to
rustdoc
's<meta>
info "Source to the Rust file ...", which (to me) is unexpected.Meta
The text was updated successfully, but these errors were encountered: