Skip to content

Commit 49d39e5

Browse files
committed
Auto merge of #75568 - ehuss:cloudabi-tier3, r=Mark-Simulacrum
Move CloudABI to tier 3. The CloudABI target hasn't had much work done on it in a while, and it doesn't appear to be in active use. It has a fairly substantial amount of code, particularly in the [sys module](https://github.com/rust-lang/rust/tree/5addb135edc2653b07670482a430aac9b655a86b/library/std/src/sys/cloudabi) that requires actively supporting. I contacted @EdSchouten who indicated that many of the CloudABI concepts are now in WASI, and that they are OK with the target being moved to tier 3.
2 parents 5f88bea + ccfd438 commit 49d39e5

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

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

-3
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,6 @@ RUN env \
6161

6262
WORKDIR /tmp
6363
COPY host-x86_64/dist-various-2/shared.sh /tmp/
64-
COPY host-x86_64/dist-various-2/build-cloudabi-toolchain.sh /tmp/
65-
RUN /tmp/build-cloudabi-toolchain.sh x86_64-unknown-cloudabi
6664
COPY host-x86_64/dist-various-2/build-fuchsia-toolchain.sh /tmp/
6765
RUN /tmp/build-fuchsia-toolchain.sh
6866
COPY host-x86_64/dist-various-2/build-solaris-toolchain.sh /tmp/
@@ -97,7 +95,6 @@ ENV TARGETS=$TARGETS,wasm32-wasi
9795
ENV TARGETS=$TARGETS,sparcv9-sun-solaris
9896
ENV TARGETS=$TARGETS,x86_64-sun-solaris
9997
ENV TARGETS=$TARGETS,x86_64-unknown-linux-gnux32
100-
ENV TARGETS=$TARGETS,x86_64-unknown-cloudabi
10198
ENV TARGETS=$TARGETS,x86_64-fortanix-unknown-sgx
10299
ENV TARGETS=$TARGETS,nvptx64-nvidia-cuda
103100
ENV TARGETS=$TARGETS,armv7-unknown-linux-gnueabi

src/ci/docker/host-x86_64/dist-various-2/build-x86_64-fortanix-unknown-sgx-toolchain.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ target="x86_64-fortanix-unknown-sgx"
77

88
install_prereq() {
99
curl https://apt.llvm.org/llvm-snapshot.gpg.key|apt-key add -
10-
add-apt-repository -y 'deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic main'
10+
add-apt-repository -y 'deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic-11 main'
1111
apt-get update
1212
apt-get install -y --no-install-recommends \
1313
build-essential \

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,6 @@ target | std | host | notes
128128
`x86_64-linux-android` | ✓ | | 64-bit x86 Android
129129
`x86_64-rumprun-netbsd` | ✓ | | 64-bit NetBSD Rump Kernel
130130
`x86_64-sun-solaris` | ✓ | | 64-bit Solaris 10/11, illumos
131-
`x86_64-unknown-cloudabi` | ✓ | | 64-bit CloudABI
132131
`x86_64-unknown-freebsd` | ✓ | ✓ | 64-bit FreeBSD
133132
`x86_64-unknown-illumos` | ✓ | ✓ | illumos
134133
`x86_64-unknown-linux-gnux32` | ✓ | | 64-bit Linux (x32 ABI) (kernel 4.15, glibc 2.27)
@@ -208,6 +207,7 @@ target | std | host | notes
208207
`x86_64-linux-kernel` | ? | | Linux kernel modules
209208
`x86_64-pc-solaris` | ? | |
210209
`x86_64-pc-windows-msvc` | ✓ | | 64-bit Windows XP support
210+
`x86_64-unknown-cloudabi` | ✓ | | 64-bit CloudABI
211211
`x86_64-unknown-dragonfly` | ✓ | ✓ | 64-bit DragonFlyBSD
212212
`x86_64-unknown-haiku` | ✓ | ✓ | 64-bit Haiku
213213
`x86_64-unknown-hermit` | ? | |

0 commit comments

Comments
 (0)