mirror of
https://git.proxmox.com/git/rustc
synced 2026-03-27 12:17:37 +00:00
19 lines
603 B
Docker
19 lines
603 B
Docker
FROM debian:bookworm
|
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
curl ca-certificates \
|
|
gcc libc6-dev \
|
|
gcc-sparc64-linux-gnu libc6-dev-sparc64-cross \
|
|
qemu-system-sparc64 openbios-sparc seabios ipxe-qemu \
|
|
p7zip-full cpio
|
|
|
|
COPY linux-sparc64.sh /
|
|
RUN bash /linux-sparc64.sh
|
|
|
|
COPY test-runner-linux /
|
|
|
|
ENV CARGO_TARGET_SPARC64_UNKNOWN_LINUX_GNU_LINKER=sparc64-linux-gnu-gcc \
|
|
CARGO_TARGET_SPARC64_UNKNOWN_LINUX_GNU_RUNNER="/test-runner-linux sparc64" \
|
|
CC_sparc64_unknown_linux_gnu=sparc64-linux-gnu-gcc \
|
|
PATH=$PATH:/rust/bin
|