Skip to content

Commit d9a105f

Browse files
committed
Auto merge of #78439 - lzutao:rm-clouldabi, r=Mark-Simulacrum
Drop support for all cloudabi targets `cloudabi` is a tier-3 target, and [it is no longer being maintained upstream][no]. This PR drops supports for cloudabi targets. Those targets are: * aarch64-unknown-cloudabi * armv7-unknown-cloudabi * i686-unknown-cloudabi * x86_64-unknown-cloudabi Since this drops supports for a target, I'd like somebody to tag `relnotes` label to this PR. Some other issues: * The tidy exception for `cloudabi` crate is still remained because * `parking_lot v0.9.0` and `parking_lot v0.10.2` depends on `cloudabi v0.0.3`. * `parking_lot v0.11.0` depends on `cloudabi v0.1.0`. [no]: https://github.com/NuxiNL/cloudabi#note-this-project-is-unmaintained
2 parents 40624dd + 6bfe27a commit d9a105f

File tree

165 files changed

+103
-5329
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

165 files changed

+103
-5329
lines changed

compiler/rustc_codegen_cranelift/build_sysroot/alloc_system/lib.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
all(target_arch = "wasm32", not(target_os = "emscripten")),
2424
feature(integer_atomics, stdsimd)
2525
)]
26-
#![cfg_attr(any(unix, target_os = "cloudabi", target_os = "redox"), feature(libc))]
26+
#![cfg_attr(any(unix, target_os = "redox"), feature(libc))]
2727
// The minimum alignment guaranteed by the architecture. This value is used to
2828
// add fast paths for low alignment values.
2929
#[cfg(all(any(target_arch = "x86",
@@ -69,7 +69,7 @@ const MIN_ALIGN: usize = 16;
6969
/// independently of the standard library’s global allocator.
7070
#[stable(feature = "alloc_system_type", since = "1.28.0")]
7171
pub struct System;
72-
#[cfg(any(windows, unix, target_os = "cloudabi", target_os = "redox"))]
72+
#[cfg(any(windows, unix, target_os = "redox"))]
7373
mod realloc_fallback {
7474
use core::alloc::{GlobalAlloc, Layout};
7575
use core::cmp;
@@ -89,7 +89,7 @@ mod realloc_fallback {
8989
}
9090
}
9191
}
92-
#[cfg(any(unix, target_os = "cloudabi", target_os = "redox"))]
92+
#[cfg(any(unix, target_os = "redox"))]
9393
mod platform {
9494
extern crate libc;
9595
use core::ptr;

compiler/rustc_target/src/spec/aarch64_unknown_cloudabi.rs

-16
This file was deleted.

compiler/rustc_target/src/spec/armv7_unknown_cloudabi_eabihf.rs

-18
This file was deleted.

compiler/rustc_target/src/spec/cloudabi_base.rs

-36
This file was deleted.

compiler/rustc_target/src/spec/i686_unknown_cloudabi.rs

-20
This file was deleted.

compiler/rustc_target/src/spec/mod.rs

-6
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ mod apple_base;
5454
mod apple_sdk_base;
5555
mod arm_base;
5656
mod avr_gnu_base;
57-
mod cloudabi_base;
5857
mod dragonfly_base;
5958
mod freebsd_base;
6059
mod fuchsia_base;
@@ -628,11 +627,6 @@ supported_targets! {
628627

629628
("msp430-none-elf", msp430_none_elf),
630629

631-
("aarch64-unknown-cloudabi", aarch64_unknown_cloudabi),
632-
("armv7-unknown-cloudabi-eabihf", armv7_unknown_cloudabi_eabihf),
633-
("i686-unknown-cloudabi", i686_unknown_cloudabi),
634-
("x86_64-unknown-cloudabi", x86_64_unknown_cloudabi),
635-
636630
("aarch64-unknown-hermit", aarch64_unknown_hermit),
637631
("x86_64-unknown-hermit", x86_64_unknown_hermit),
638632
("x86_64-unknown-hermit-kernel", x86_64_unknown_hermit_kernel),

compiler/rustc_target/src/spec/x86_64_unknown_cloudabi.rs

-19
This file was deleted.

library/panic_abort/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ pub unsafe extern "C" fn __rust_start_panic(_payload: usize) -> u32 {
3232
abort();
3333

3434
cfg_if::cfg_if! {
35-
if #[cfg(any(unix, target_os = "cloudabi"))] {
35+
if #[cfg(unix)] {
3636
unsafe fn abort() -> ! {
3737
libc::abort();
3838
}

library/panic_unwind/src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ cfg_if::cfg_if! {
4949
mod real_imp;
5050
} else if #[cfg(any(
5151
all(target_family = "windows", target_env = "gnu"),
52-
target_os = "cloudabi",
5352
target_os = "psp",
5453
target_family = "unix",
5554
all(target_vendor = "fortanix", target_env = "sgx"),

library/std/build.rs

-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ fn main() {
1818
|| target.contains("uwp")
1919
|| target.contains("windows")
2020
|| target.contains("fuchsia")
21-
|| target.contains("cloudabi")
2221
|| (target.contains("sgx") && target.contains("fortanix"))
2322
|| target.contains("hermit")
2423
|| target.contains("l4re")

library/std/src/fs.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#![stable(feature = "rust1", since = "1.0.0")]
99
#![deny(unsafe_op_in_unsafe_fn)]
1010

11-
#[cfg(all(test, not(any(target_os = "cloudabi", target_os = "emscripten", target_env = "sgx"))))]
11+
#[cfg(all(test, not(any(target_os = "emscripten", target_env = "sgx"))))]
1212
mod tests;
1313

1414
use crate::ffi::OsString;

library/std/src/net/tcp.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#![deny(unsafe_op_in_unsafe_fn)]
22

3-
#[cfg(all(test, not(any(target_os = "cloudabi", target_os = "emscripten"))))]
3+
#[cfg(all(test, not(target_os = "emscripten")))]
44
mod tests;
55

66
use crate::io::prelude::*;

library/std/src/net/udp.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#[cfg(all(test, not(any(target_os = "cloudabi", target_os = "emscripten", target_env = "sgx"))))]
1+
#[cfg(all(test, not(any(target_os = "emscripten", target_env = "sgx"))))]
22
mod tests;
33

44
use crate::fmt;

library/std/src/process.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@
9797
#![stable(feature = "process", since = "1.0.0")]
9898
#![deny(unsafe_op_in_unsafe_fn)]
9999

100-
#[cfg(all(test, not(any(target_os = "cloudabi", target_os = "emscripten", target_env = "sgx"))))]
100+
#[cfg(all(test, not(any(target_os = "emscripten", target_env = "sgx"))))]
101101
mod tests;
102102

103103
use crate::io::prelude::*;

library/std/src/sys/cloudabi/abi/bitflags.rs

-47
This file was deleted.

0 commit comments

Comments
 (0)