We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5672c9b commit eda889cCopy full SHA for eda889c
src/libstd/env.rs
@@ -712,6 +712,7 @@ pub mod consts {
712
/// - powerpc
713
/// - powerpc64
714
/// - s390x
715
+ /// - sparc64
716
#[stable(feature = "env", since = "1.0.0")]
717
pub const ARCH: &'static str = super::arch::ARCH;
718
@@ -843,6 +844,11 @@ mod arch {
843
844
pub const ARCH: &'static str = "s390x";
845
}
846
847
+#[cfg(target_arch = "sparc64")]
848
+mod arch {
849
+ pub const ARCH: &'static str = "sparc64";
850
+}
851
+
852
#[cfg(target_arch = "le32")]
853
mod arch {
854
pub const ARCH: &'static str = "le32";
0 commit comments