mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-17 11:07:48 +00:00
- Disable `vsx` tests for `ppc` and `ppc64` - Disable `tme` tests for `aarch64` and `aarch64_be` - Disable `frecipe` tests for `loongarch64` - Add `altivec` run for PPC32 (with `-C target-feature=+vsx` `qemu` gives a nasty error)
20 lines
515 B
Docker
20 lines
515 B
Docker
FROM ubuntu:25.04
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
gcc \
|
|
g++ \
|
|
ca-certificates \
|
|
libc6-dev \
|
|
gcc-aarch64-linux-gnu \
|
|
g++-aarch64-linux-gnu \
|
|
libc6-dev-arm64-cross \
|
|
qemu-user \
|
|
make \
|
|
file \
|
|
clang-19 \
|
|
lld
|
|
|
|
ENV CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER=aarch64-linux-gnu-gcc \
|
|
CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_RUNNER="qemu-aarch64 -cpu max -L /usr/aarch64-linux-gnu" \
|
|
OBJDUMP=aarch64-linux-gnu-objdump \
|
|
STDARCH_TEST_SKIP_FEATURE=tme
|