blob: aea1c9a20c79445f1af96c6a6411134f403f7ad7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
--- builder/src/arch/mod.rs.orig 2025-02-11 17:46:31 UTC
+++ builder/src/arch/mod.rs
@@ -28,3 +28,10 @@ pub use crate::arch::windows::*;
#[cfg(any(target_arch = "x86_64", target_arch = "x86"))]
#[cfg(target_os = "windows")]
pub use crate::arch::windows::*;
+
+#[cfg(any(target_arch = "x86_64", target_arch = "x86"))]
+#[cfg(target_os = "freebsd")]
+pub mod freebsd;
+#[cfg(any(target_arch = "x86_64", target_arch = "x86"))]
+#[cfg(target_os = "freebsd")]
+pub use crate::arch::freebsd::*;
|