1
Fork 0

Remove the x86_64-rumprun-netbsd target

Closes #81514
This commit is contained in:
Simonas Kazlauskas 2021-02-27 17:55:22 +02:00
parent 8e863eb59a
commit a757fae245
10 changed files with 4 additions and 68 deletions

View file

@ -34,7 +34,7 @@ impl Drop for Handler {
target_os = "freebsd",
target_os = "solaris",
target_os = "illumos",
all(target_os = "netbsd", not(target_vendor = "rumprun")),
target_os = "netbsd",
target_os = "openbsd"
))]
mod imp {
@ -218,7 +218,7 @@ mod imp {
target_os = "freebsd",
target_os = "solaris",
target_os = "illumos",
all(target_os = "netbsd", not(target_vendor = "rumprun")),
target_os = "netbsd",
target_os = "openbsd",
)))]
mod imp {

View file

@ -202,7 +202,7 @@ impl Drop for Thread {
not(target_os = "linux"),
not(target_os = "freebsd"),
not(target_os = "macos"),
not(all(target_os = "netbsd", not(target_vendor = "rumprun"))),
not(target_os = "netbsd"),
not(target_os = "openbsd"),
not(target_os = "solaris")
))]
@ -222,7 +222,7 @@ pub mod guard {
target_os = "linux",
target_os = "freebsd",
target_os = "macos",
all(target_os = "netbsd", not(target_vendor = "rumprun")),
target_os = "netbsd",
target_os = "openbsd",
target_os = "solaris"
))]