mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-27 18:57:42 +03:00
69aad1af38
Tests failed to build due to use of legacy const generics syntax, out-of-bounds immediates and incorrect name of const generics in `assert_instr`
10 lines
517 B
Docker
10 lines
517 B
Docker
FROM ubuntu:25.04 # gcc-mips64el-linux-gnuabi64 not available in 25.10
|
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
gcc libc6-dev qemu-user ca-certificates \
|
|
gcc-mips64el-linux-gnuabi64 libc6-dev-mips64el-cross \
|
|
qemu-system-mips64el
|
|
|
|
ENV CARGO_TARGET_MIPS64EL_UNKNOWN_LINUX_GNUABI64_LINKER=mips64el-linux-gnuabi64-gcc \
|
|
CARGO_TARGET_MIPS64EL_UNKNOWN_LINUX_GNUABI64_RUNNER="qemu-mips64el -L /usr/mips64el-linux-gnuabi64" \
|
|
OBJDUMP=mips64el-linux-gnuabi64-objdump |