summaryrefslogtreecommitdiffstats
path: root/vendor/libm-0.1.4/ci/docker/mipsel-unknown-linux-gnu/Dockerfile
blob: 0bc695624620ea205cbd813de92ed2279ae73dff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
FROM ubuntu:18.04

RUN apt-get update && \
    apt-get install -y --no-install-recommends \
    gcc libc6-dev ca-certificates \
    gcc-mipsel-linux-gnu libc6-dev-mipsel-cross \
    binfmt-support qemu-user-static

ENV CARGO_TARGET_MIPSEL_UNKNOWN_LINUX_GNU_LINKER=mipsel-linux-gnu-gcc \
    CARGO_TARGET_MIPSEL_UNKNOWN_LINUX_GNU_RUNNER=qemu-mipsel-static \
    QEMU_LD_PREFIX=/usr/mipsel-linux-gnu \
    RUST_TEST_THREADS=1