mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-22 12:37:32 +00:00
14 lines
445 B
Docker
14 lines
445 B
Docker
ARG IMAGE=ubuntu:24.04
|
|
FROM $IMAGE
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y --no-install-recommends \
|
|
gcc libc6-dev qemu-user-static ca-certificates \
|
|
gcc-powerpc-linux-gnu libc6-dev-powerpc-cross \
|
|
qemu-system-ppc
|
|
|
|
ENV CARGO_TARGET_POWERPC_UNKNOWN_LINUX_GNU_LINKER=powerpc-linux-gnu-gcc \
|
|
CARGO_TARGET_POWERPC_UNKNOWN_LINUX_GNU_RUNNER=qemu-ppc-static \
|
|
QEMU_LD_PREFIX=/usr/powerpc-linux-gnu \
|
|
RUST_TEST_THREADS=1
|