8000 Recognize NetBSD/sparc64 as a generic 64-bit NetBSD · rust-lang/libc@29f4a99 · GitHub
[go: up one dir, main page]

Skip to content

Commit 29f4a99

Browse files
committed
Recognize NetBSD/sparc64 as a generic 64-bit NetBSD
1 parent b2e56d5 commit 29f4a99

File tree

1 file changed

+2
-1
lines changed
  • src/unix/bsd/netbsdlike/netbsd/other

1 file changed

+2
-1
lines changed

src/unix/bsd/netbsdlike/netbsd/other/mod.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
cfg_if! {
2-
if #[cfg(target_arch = "x86_64")] {
2+
if #[cfg(any(target_arch = "sparc64",
3+
target_arch = "x86_64"))] {
34
mod b64;
45
pub use self::b64::*;
56
} else if #[cfg(any(target_arch = "arm",

0 commit comments

Comments
 (0)
0