mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-27 11:05:06 +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
|