mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-27 19:16:36 +00:00
The Rust `cc` crate reads these, so make sure they are set for when we start making use of `cc`.
16 lines
584 B
Docker
16 lines
584 B
Docker
FROM ubuntu:24.04
|
|
|
|
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 TOOLCHAIN_PREFIX=powerpc-linux-gnu-
|
|
ENV CARGO_TARGET_POWERPC_UNKNOWN_LINUX_GNU_LINKER="$TOOLCHAIN_PREFIX"gcc \
|
|
CARGO_TARGET_POWERPC_UNKNOWN_LINUX_GNU_RUNNER=qemu-ppc-static \
|
|
AR_powerpc_unknown_linux_gnu="$TOOLCHAIN_PREFIX"ar \
|
|
CC_powerpc_unknown_linux_gnu="$TOOLCHAIN_PREFIX"gcc \
|
|
QEMU_LD_PREFIX=/usr/powerpc-linux-gnu \
|
|
RUST_TEST_THREADS=1
|