-
Notifications
You must be signed in to change notification settings - Fork 13.3k
std::arch docs are missing (404) #61038
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
Comments
https://doc.rust-lang.org/1.34.0/src/std/lib.rs.html#361
CC #57808 Docs can now be found in https://doc.rust-lang.org/core/arch/index.html which won't show up at the top for reasons™... :/ @rustbot modify labels: T-doc |
@gnzlbg maybe you can enlighten me, why you choose |
See #57808 (comment) and the conversation around that. |
OK. It's intentional. Google still ranks older version of /std/…/arch higher than latest /core/arch, but that's another problem. |
FWIW I think that we should try to do better here. In stdsimd itself, we just provide different docs of the crates, one for each target. In libc we do the same. But libstd tries to compile libcore/liballoc/libstd for all targets/target-features/... at once, and then generate a single "doc" web-site containing the info for all of them at once, and to present it nicely. The problem itself is hard, and the current approach has limitations like this one. @QuietMisdreavus an alternative here would be to not try to generate the docs all at once, but to, e.g., compile the libstd docs for the different targets, generating multiple docs, and then as a post-processing step, manually merge them for the |
The
std::arch
module is not documented since 1.34 release:The text was updated successfully, but these errors were encountered: