mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-28 19:28:10 +00:00
13 lines
588 B
Docker
13 lines
588 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-powerpc64le-linux-gnu libc6-dev-ppc64el-cross \
|
|
qemu-system-ppc file make
|
|
|
|
# Work around qemu triggering a sigill on vec_subs if the cpu target is not defined.
|
|
ENV CARGO_TARGET_POWERPC64LE_UNKNOWN_LINUX_GNU_LINKER=powerpc64le-linux-gnu-gcc \
|
|
CARGO_TARGET_POWERPC64LE_UNKNOWN_LINUX_GNU_RUNNER="qemu-ppc64le -cpu power9 -L /usr/powerpc64le-linux-gnu" \
|
|
CC=powerpc64le-linux-gnu-gcc \
|
|
OBJDUMP=powerpc64le-linux-gnu-objdump
|