- Force rebuild all consumers to catch regressions early Changes: https://blog.rust-lang.org/2018/10/25/Rust-1.30.0.html Approved by: rust (tobik) MFH: 2018Q4 (less rust versions to support) Differential Revision: https://reviews.freebsd.org/D17695
19 lines
1.0 KiB
Rust
19 lines
1.0 KiB
Rust
--- src/libstd/os/raw/mod.rs.orig 2018-10-24 20:00:01 UTC
|
|
+++ src/libstd/os/raw/mod.rs
|
|
@@ -27,6 +27,7 @@
|
|
all(target_os = "android", any(target_arch = "aarch64",
|
|
target_arch = "arm")),
|
|
all(target_os = "l4re", target_arch = "x86_64"),
|
|
+ all(target_os = "freebsd", target_arch = "aarch64"),
|
|
all(target_os = "netbsd", any(target_arch = "aarch64",
|
|
target_arch = "arm",
|
|
target_arch = "powerpc")),
|
|
@@ -42,6 +43,7 @@
|
|
all(target_os = "android", any(target_arch = "aarch64",
|
|
target_arch = "arm")),
|
|
all(target_os = "l4re", target_arch = "x86_64"),
|
|
+ all(target_os = "freebsd", target_arch = "aarch64"),
|
|
all(target_os = "netbsd", any(target_arch = "aarch64",
|
|
target_arch = "arm",
|
|
target_arch = "powerpc")),
|