mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-03 10:47:16 +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)
13 lines
508 B
Docker
13 lines
508 B
Docker
FROM ubuntu:25.04
|
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
gcc libc6-dev qemu-user ca-certificates \
|
|
gcc-powerpc-linux-gnu libc6-dev-powerpc-cross \
|
|
qemu-system-ppc make file
|
|
|
|
ENV CARGO_TARGET_POWERPC_UNKNOWN_LINUX_GNU_LINKER=powerpc-linux-gnu-gcc \
|
|
CARGO_TARGET_POWERPC_UNKNOWN_LINUX_GNU_RUNNER="qemu-ppc -cpu mpc8610 -L /usr/powerpc-linux-gnu" \
|
|
CC=powerpc-linux-gnu-gcc \
|
|
OBJDUMP=powerpc-linux-gnu-objdump \
|
|
STDARCH_TEST_SKIP_FEATURE=vsx
|