mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-22 12:37:32 +00:00
14 lines
444 B
Docker
14 lines
444 B
Docker
ARG IMAGE=ubuntu:24.04
|
|
FROM $IMAGE
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y --no-install-recommends \
|
|
gcc libc6-dev ca-certificates \
|
|
gcc-mips-linux-gnu libc6-dev-mips-cross \
|
|
binfmt-support qemu-user-static qemu-system-mips
|
|
|
|
ENV CARGO_TARGET_MIPS_UNKNOWN_LINUX_GNU_LINKER=mips-linux-gnu-gcc \
|
|
CARGO_TARGET_MIPS_UNKNOWN_LINUX_GNU_RUNNER=qemu-mips-static \
|
|
QEMU_LD_PREFIX=/usr/mips-linux-gnu \
|
|
RUST_TEST_THREADS=1
|