mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-24 22:07:03 +00:00
This includes a qemu update from 8.2.2 to 9.2.1 which should hopefully fix some bugs we have encountered. PowerPC64LE is skipped for now because the new version seems to cause a number of new SIGILLs.
15 lines
589 B
Docker
15 lines
589 B
Docker
ARG IMAGE=ubuntu:25.04
|
|
FROM $IMAGE
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y --no-install-recommends \
|
|
gcc libc6-dev qemu-user-static ca-certificates \
|
|
gcc-14-loongarch64-linux-gnu libc6-dev-loong64-cross
|
|
|
|
ENV CARGO_TARGET_LOONGARCH64_UNKNOWN_LINUX_GNU_LINKER=loongarch64-linux-gnu-gcc-14 \
|
|
CARGO_TARGET_LOONGARCH64_UNKNOWN_LINUX_GNU_RUNNER=qemu-loongarch64-static \
|
|
AR_loongarch64_unknown_linux_gnu=loongarch64-linux-gnu-ar \
|
|
CC_loongarch64_unknown_linux_gnu=loongarch64-linux-gnu-gcc-14 \
|
|
QEMU_LD_PREFIX=/usr/loongarch64-linux-gnu \
|
|
RUST_TEST_THREADS=1
|