mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-10 09:25:15 +00:00
12 lines
470 B
Docker
12 lines
470 B
Docker
FROM ubuntu:24.04
|
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
gcc libc6-dev qemu-user ca-certificates \
|
|
gcc-powerpc64-linux-gnu libc6-dev-ppc64-cross \
|
|
file make
|
|
|
|
ENV CARGO_TARGET_POWERPC64_UNKNOWN_LINUX_GNU_LINKER=powerpc64-linux-gnu-gcc \
|
|
CARGO_TARGET_POWERPC64_UNKNOWN_LINUX_GNU_RUNNER="qemu-ppc64 -cpu power10 -L /usr/powerpc64-linux-gnu" \
|
|
CC=powerpc64-linux-gnu-gcc \
|
|
OBJDUMP=powerpc64-linux-gnu-objdump
|