]> git.lizzy.rs Git - rust.git/blob - src/ci/docker/host-x86_64/dist-armhf-linux/Dockerfile
Rollup merge of #93613 - crlf0710:rename_to_async_iter, r=yaahc
[rust.git] / src / ci / docker / host-x86_64 / dist-armhf-linux / Dockerfile
1 FROM ubuntu:20.04
2
3 COPY scripts/cross-apt-packages.sh /scripts/
4 RUN sh /scripts/cross-apt-packages.sh
5
6 COPY scripts/crosstool-ng-1.24.sh /scripts/
7 RUN sh /scripts/crosstool-ng-1.24.sh
8
9 COPY scripts/rustbuild-setup.sh /scripts/
10 RUN sh /scripts/rustbuild-setup.sh
11 USER rustbuild
12 WORKDIR /tmp
13
14 COPY host-x86_64/dist-armhf-linux/arm-linux-gnueabihf.config host-x86_64/dist-armhf-linux/build-toolchains.sh /tmp/
15 RUN ./build-toolchains.sh
16
17 USER root
18
19 COPY scripts/sccache.sh /scripts/
20 RUN sh /scripts/sccache.sh
21
22 COPY scripts/cmake.sh /scripts/
23 RUN /scripts/cmake.sh
24
25 ENV PATH=$PATH:/x-tools/arm-unknown-linux-gnueabihf/bin
26
27 ENV CC_arm_unknown_linux_gnueabihf=arm-unknown-linux-gnueabihf-gcc \
28     AR_arm_unknown_linux_gnueabihf=arm-unknown-linux-gnueabihf-ar \
29     CXX_arm_unknown_linux_gnueabihf=arm-unknown-linux-gnueabihf-g++
30
31 ENV HOSTS=arm-unknown-linux-gnueabihf
32
33 ENV RUST_CONFIGURE_ARGS --enable-full-tools --disable-docs
34 ENV SCRIPT python3 ../x.py dist --host $HOSTS --target $HOSTS