]> git.lizzy.rs Git - rust.git/blob - src/ci/docker/host-x86_64/dist-x86_64-musl/Dockerfile
Rollup merge of #94064 - nikic:update-musl-image, r=Mark-Simulacrum
[rust.git] / src / ci / docker / host-x86_64 / dist-x86_64-musl / Dockerfile
1 FROM ubuntu:20.04
2
3 RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
4   g++ \
5   make \
6   ninja-build \
7   file \
8   wget \
9   curl \
10   ca-certificates \
11   python3 \
12   git \
13   cmake \
14   xz-utils \
15   sudo \
16   gdb \
17   patch \
18   libssl-dev \
19   pkg-config
20
21 WORKDIR /build/
22
23 # Build cmake before musl toolchain, as we replace the compiler during that step.
24 COPY scripts/cmake.sh /scripts/
25 RUN /scripts/cmake.sh
26
27 COPY scripts/musl-patch-configure.diff /build/
28 COPY scripts/musl-toolchain.sh /build/
29 # We need to mitigate rust-lang/rust#34978 when compiling musl itself as well
30 RUN CFLAGS="-Wa,-mrelax-relocations=no -Wa,--compress-debug-sections=none -Wl,--compress-debug-sections=none" \
31     CXXFLAGS="-Wa,-mrelax-relocations=no -Wa,--compress-debug-sections=none -Wl,--compress-debug-sections=none" \
32     REPLACE_CC=1 bash musl-toolchain.sh x86_64 && rm -rf build
33
34 COPY scripts/sccache.sh /scripts/
35 RUN sh /scripts/sccache.sh
36
37 ENV HOSTS=x86_64-unknown-linux-musl
38
39 ENV RUST_CONFIGURE_ARGS \
40       --musl-root-x86_64=/usr/local/x86_64-linux-musl \
41       --enable-extended \
42       --enable-sanitizers \
43       --enable-profiler \
44       --enable-lld \
45       --set target.x86_64-unknown-linux-musl.crt-static=false \
46       --build $HOSTS
47
48 # Newer binutils broke things on some vms/distros (i.e., linking against
49 # unknown relocs disabled by the following flag), so we need to go out of our
50 # way to produce "super compatible" binaries.
51 #
52 # See: https://github.com/rust-lang/rust/issues/34978
53 # And: https://github.com/rust-lang/rust/issues/59411
54 ENV CFLAGS_x86_64_unknown_linux_musl="-Wa,-mrelax-relocations=no -Wa,--compress-debug-sections=none \
55     -Wl,--compress-debug-sections=none"
56
57 # To run native tests replace `dist` below with `test`
58 ENV SCRIPT python3 ../x.py dist --build $HOSTS