Skip to content

Commit 3274c92

Browse files
committed
Auto merge of #467 - jakllsch:netbsd-sparc64-20161205, r=alexcrichton
Recognize NetBSD/sparc64 as a generic 64-bit NetBSD
2 parents b2e56d5 + 29f4a99 commit 3274c92

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)