Skip to content

Commit a757fae

Browse files
committed
Remove the x86_64-rumprun-netbsd target
Closes #81514
1 parent 8e863eb commit a757fae

File tree

10 files changed

+4
-68
lines changed

10 files changed

+4
-68
lines changed

compiler/rustc_target/src/spec/mod.rs

-1
Original file line numberDiff line numberDiff line change
@@ -702,7 +702,6 @@ supported_targets! {
702702
("powerpc-unknown-netbsd", powerpc_unknown_netbsd),
703703
("sparc64-unknown-netbsd", sparc64_unknown_netbsd),
704704
("x86_64-unknown-netbsd", x86_64_unknown_netbsd),
705-
("x86_64-rumprun-netbsd", x86_64_rumprun_netbsd),
706705

707706
("i686-unknown-haiku", i686_unknown_haiku),
708707
("x86_64-unknown-haiku", x86_64_unknown_haiku),

compiler/rustc_target/src/spec/x86_64_rumprun_netbsd.rs

-25
This file was deleted.

library/std/src/sys/unix/stack_overflow.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ impl Drop for Handler {
3434
target_os = "freebsd",
3535
target_os = "solaris",
3636
target_os = "illumos",
37-
all(target_os = "netbsd", not(target_vendor = "rumprun")),
37+
target_os = "netbsd",
3838
target_os = "openbsd"
3939
))]
4040
mod imp {
@@ -218,7 +218,7 @@ mod imp {
218218
target_os = "freebsd",
219219
target_os = "solaris",
220220
target_os = "illumos",
221-
all(target_os = "netbsd", not(target_vendor = "rumprun")),
221+
target_os = "netbsd",
222222
target_os = "openbsd",
223223
)))]
224224
mod imp {

library/std/src/sys/unix/thread.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ impl Drop for Thread {
202202
not(target_os = "linux"),
203203
not(target_os = "freebsd"),
204204
not(target_os = "macos"),
205-
not(all(target_os = "netbsd", not(target_vendor = "rumprun"))),
205+
not(target_os = "netbsd"),
206206
not(target_os = "openbsd"),
207207
not(target_os = "solaris")
208208
))]
@@ -222,7 +222,7 @@ pub mod guard {
222222
target_os = "linux",
223223
target_os = "freebsd",
224224
target_os = "macos",
225-
all(target_os = "netbsd", not(target_vendor = "rumprun")),
225+
target_os = "netbsd",
226226
target_os = "openbsd",
227227
target_os = "solaris"
228228
))]

library/unwind/build.rs

-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@ fn main() {
2222
}
2323
} else if target.contains("freebsd") {
2424
println!("cargo:rustc-link-lib=gcc_s");
25-
} else if target.contains("rumprun") {
26-
println!("cargo:rustc-link-lib=unwind");
2725
} else if target.contains("netbsd") {
2826
println!("cargo:rustc-link-lib=gcc_s");
2927
} else if target.contains("openbsd") {

src/ci/docker/host-x86_64/dist-various-1/Dockerfile

-4
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,6 @@ RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-ins
4444

4545
WORKDIR /build
4646

47-
COPY host-x86_64/dist-various-1/build-rumprun.sh /build
48-
RUN ./build-rumprun.sh
49-
5047
COPY host-x86_64/dist-various-1/install-x86_64-redox.sh /build
5148
RUN ./install-x86_64-redox.sh
5249

@@ -112,7 +109,6 @@ ENV RUN_MAKE_TARGETS=$RUN_MAKE_TARGETS,thumbv7em-none-eabihf
112109

113110
ENV TARGETS=asmjs-unknown-emscripten
114111
ENV TARGETS=$TARGETS,wasm32-unknown-emscripten
115-
ENV TARGETS=$TARGETS,x86_64-rumprun-netbsd
116112
ENV TARGETS=$TARGETS,mips-unknown-linux-musl
117113
ENV TARGETS=$TARGETS,mipsel-unknown-linux-musl
118114
ENV TARGETS=$TARGETS,mips64-unknown-linux-muslabi64

src/ci/docker/host-x86_64/dist-various-1/build-rumprun.sh

-29
This file was deleted.

src/doc/rustc/src/platform-support.md

-1
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,6 @@ target | std | host | notes
133133
`x86_64-fortanix-unknown-sgx` | ✓ | | [Fortanix ABI] for 64-bit Intel SGX
134134
`x86_64-fuchsia` | ✓ | | 64-bit Fuchsia
135135
`x86_64-linux-android` | ✓ | | 64-bit x86 Android
136-
`x86_64-rumprun-netbsd` | ✓ | | 64-bit NetBSD Rump Kernel
137136
`x86_64-sun-solaris` | ✓ | | 64-bit Solaris 10/11, illumos
138137
`x86_64-unknown-freebsd` | ✓ | ✓ | 64-bit FreeBSD
139138
`x86_64-unknown-illumos` | ✓ | ✓ | illumos

src/librustdoc/clean/cfg.rs

-1
Original file line numberDiff line numberDiff line change
@@ -505,7 +505,6 @@ impl<'a> fmt::Display for Display<'a> {
505505
(sym::target_vendor, Some(vendor)) => match &*vendor.as_str() {
506506
"apple" => "Apple",
507507
"pc" => "PC",
508-
"rumprun" => "Rumprun",
509508
"sun" => "Sun",
510509
"fortanix" => "Fortanix",
511510
_ => "",

src/tools/build-manifest/src/main.rs

-1
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,6 @@ static TARGETS: &[&str] = &[
139139
"x86_64-linux-android",
140140
"x86_64-pc-windows-gnu",
141141
"x86_64-pc-windows-msvc",
142-
"x86_64-rumprun-netbsd",
143142
"x86_64-sun-solaris",
144143
"x86_64-pc-solaris",
145144
"x86_64-unknown-freebsd",

0 commit comments

Comments
 (0)