mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-23 21:49:11 +00:00
17 lines
538 B
Docker
17 lines
538 B
Docker
FROM ubuntu:20.04
|
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
gcc \
|
|
ca-certificates \
|
|
libc6-dev \
|
|
gcc-powerpc64-linux-gnu \
|
|
libc6-dev-ppc64-cross \
|
|
qemu-user \
|
|
qemu-system-ppc
|
|
|
|
ENV CARGO_TARGET_POWERPC64_UNKNOWN_LINUX_GNU_LINKER=powerpc64-linux-gnu-gcc \
|
|
# TODO: should actually run these tests
|
|
#CARGO_TARGET_POWERPC64_UNKNOWN_LINUX_GNU_RUNNER="qemu-ppc64 -L /usr/powerpc64-linux-gnu" \
|
|
CARGO_TARGET_POWERPC64_UNKNOWN_LINUX_GNU_RUNNER=echo \
|
|
CC=powerpc64-linux-gnu-gcc
|