You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I observed that in the documentation on docs.rs, certain methods that are specific to non-x86 build targets are not rendered on the documentation page.
The build documentation on docs.rs states that the default compilation target is x86_64-unknown-linux-gnu, which probably leads to the missing documentation for aarch64 specific components.
If I'm not wrong, adding the #[cfg(docsrs)] annotation to all public methods would fix this, as documented here
The text was updated successfully, but these errors were encountered:
@binoychitale thanks for reporting this. I was living with the impression that aarch64 documentation examples are not supported by docs.rs. Do you happen to also have an example of a crate that also renders aarch64 documentation so that we can look at how they're configuring it?
I observed that in the documentation on docs.rs, certain methods that are specific to non-x86 build targets are not rendered on the documentation page.
The build documentation on docs.rs states that the default compilation target is
x86_64-unknown-linux-gnu
, which probably leads to the missing documentation for aarch64 specific components.If I'm not wrong, adding the
#[cfg(docsrs)]
annotation to all public methods would fix this, as documented hereThe text was updated successfully, but these errors were encountered: