Skip to content

Commit f87c314

Browse files
authored
Put powerpc-unknown-freebsd support to mod.rs
1 parent 73d0733 commit f87c314

File tree

1 file changed

+3
-0
lines changed
  • src/unix/bsd/freebsdlike/freebsd

1 file changed

+3
-0
lines changed

src/unix/bsd/freebsdlike/freebsd/mod.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1698,6 +1698,9 @@ cfg_if! {
16981698
} else if #[cfg(target_arch = "powerpc64")] {
16991699
mod powerpc64;
17001700
pub use self::powerpc64::*;
1701+
} else if #[cfg(target_arch = "powerpc")] {
1702+
mod powerpc;
1703+
pub use self::powerpc::*;
17011704
} else {
17021705
// Unknown target_arch
17031706
}

0 commit comments

Comments
 (0)