1
Fork 0

Auto merge of #82594 - nagisa:nagisa/remove-rumprun, r=petrochenkov

Remove the x86_64-rumprun-netbsd target

Herein we remove the target from the compiler and the code from libstd intended to support the now-defunct rumprun project.

Closes #81514
This commit is contained in:
bors 2021-02-28 03:56:16 +00:00
commit 6e2801c44e
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"
))]