aboutsummaryrefslogtreecommitdiff
path: root/libc/ci/docker/mipsel-unknown-linux-musl/Dockerfile
blob: 87399ec890ba4b1f3105a76b68055cdcd9a5edfd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
FROM ubuntu:19.04

RUN apt-get update && apt-get install -y --no-install-recommends \
        gcc libc6-dev qemu-user ca-certificates qemu-system-mipsel curl \
        xz-utils patch

RUN mkdir /toolchain

# Linux kernel version: 4.14.151
# See build_dir/target-mipsel_mips32_musl/linux-brcm47xx_generic/linux-4.14.151
# Musl version: 1.1.24
# See staging_dir/toolchain-mipsel_mips32_gcc-7.4.0_musl/info.mk
RUN curl --retry 5 -L https://downloads.openwrt.org/releases/19.07.0-rc1/targets/brcm47xx/generic/openwrt-sdk-19.07.0-rc1-brcm47xx-generic_gcc-7.4.0_musl.Linux-x86_64.tar.xz | \
    tar xJf - -C /toolchain --strip-components=1

# See https://lkml.org/lkml/2014/3/14/269
COPY sysinfo_guard.patch /toolchain
RUN patch /toolchain/staging_dir/toolchain-mipsel_mips32_gcc-7.4.0_musl/include/linux/kernel.h </toolchain/sysinfo_guard.patch

ENV PATH=$PATH:/rust/bin:/toolchain/staging_dir/toolchain-mipsel_mips32_gcc-7.4.0_musl/bin \
    STAGING_DIR=/toolchain/staging_dir \
    CC_mipsel_unknown_linux_musl=mipsel-openwrt-linux-musl-gcc \
    CARGO_TARGET_MIPSEL_UNKNOWN_LINUX_MUSL_LINKER=mipsel-openwrt-linux-musl-gcc \
    CARGO_TARGET_MIPSEL_UNKNOWN_LINUX_MUSL_RUNNER="qemu-mipsel -L /toolchain/staging_dir/toolchain-mipsel_mips32_gcc-7.4.0_musl"