]> git.lizzy.rs Git - rust.git/blob - src/ci/docker/host-x86_64/dist-powerpc-linux/Dockerfile
Merge commit '0cce3f643bfcbb92d5a1bb71858c9cbaff749d6b' into clippyup
[rust.git] / src / ci / docker / host-x86_64 / dist-powerpc-linux / Dockerfile
1 FROM ubuntu:16.04
2
3 COPY scripts/cross-apt-packages.sh /scripts/
4 RUN sh /scripts/cross-apt-packages.sh
5
6 # Ubuntu 16.04 (this container) ships with make 4, but something in the
7 # toolchains we build below chokes on that, so go back to make 3
8 COPY scripts/make3.sh /scripts/
9 RUN sh /scripts/make3.sh
10
11 COPY scripts/crosstool-ng.sh /scripts/
12 RUN sh /scripts/crosstool-ng.sh
13
14 COPY scripts/rustbuild-setup.sh /scripts/
15 RUN sh /scripts/rustbuild-setup.sh
16 USER rustbuild
17 WORKDIR /tmp
18
19 COPY host-x86_64/dist-powerpc-linux/patches/ /tmp/patches/
20 COPY host-x86_64/dist-powerpc-linux/powerpc-linux-gnu.config host-x86_64/dist-powerpc-linux/build-powerpc-toolchain.sh /tmp/
21 RUN ./build-powerpc-toolchain.sh
22
23 USER root
24
25 COPY scripts/sccache.sh /scripts/
26 RUN sh /scripts/sccache.sh
27
28 COPY scripts/cmake.sh /scripts/
29 RUN /scripts/cmake.sh
30
31 ENV PATH=$PATH:/x-tools/powerpc-unknown-linux-gnu/bin
32
33 ENV \
34     CC_powerpc_unknown_linux_gnu=powerpc-unknown-linux-gnu-gcc \
35     AR_powerpc_unknown_linux_gnu=powerpc-unknown-linux-gnu-ar \
36     CXX_powerpc_unknown_linux_gnu=powerpc-unknown-linux-gnu-g++
37
38 ENV HOSTS=powerpc-unknown-linux-gnu
39
40 ENV RUST_CONFIGURE_ARGS --enable-extended --disable-docs
41 ENV SCRIPT python3 ../x.py dist --host $HOSTS --target $HOSTS