mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-22 04:13:06 +09:00
11 lines
354 B
Docker
11 lines
354 B
Docker
FROM ubuntu:16.04
|
|
|
|
RUN apt-get update
|
|
RUN apt-get install -y --no-install-recommends \
|
|
gcc libc6-dev qemu-user ca-certificates \
|
|
gcc-powerpc64-linux-gnu libc6-dev-ppc64-cross \
|
|
qemu-system-ppc
|
|
|
|
ENV CARGO_TARGET_POWERPC64_UNKNOWN_LINUX_GNU_LINKER=powerpc64-linux-gnu-gcc \
|
|
CC=powerpc64-linux-gnu-gcc \
|
|
PATH=$PATH:/rust/bin
|