mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-07 01:03:07 +00:00
12 lines
469 B
Docker
12 lines
469 B
Docker
FROM ubuntu:18.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 Vger -L /usr/powerpc-linux-gnu" \
|
|
CC=powerpc-linux-gnu-gcc \
|
|
OBJDUMP=powerpc-linux-gnu-objdump
|