|
| 1 | +FROM ubuntu:22.04 |
| 2 | + |
| 3 | +ARG DEBIAN_FRONTEND=noninteractive |
| 4 | +RUN apt-get update && apt-get install -y --no-install-recommends \ |
| 5 | + build-essential \ |
| 6 | + g++ \ |
| 7 | + make \ |
| 8 | + ninja-build \ |
| 9 | + file \ |
| 10 | + curl \ |
| 11 | + ca-certificates \ |
| 12 | + python3 \ |
| 13 | + git \ |
| 14 | + cmake \ |
| 15 | + libssl-dev \ |
| 16 | + sudo \ |
| 17 | + xz-utils \ |
| 18 | + pkg-config \ |
| 19 | + unzip \ |
| 20 | + && rm -rf /var/lib/apt/lists/* |
| 21 | + |
| 22 | +# Duplicated in dist-various-2 Dockerfile. |
| 23 | +# FIXME: Move to canonical triple |
| 24 | +ENV \ |
| 25 | + AR_x86_64_fuchsia=x86_64-unknown-fuchsia-ar \ |
| 26 | + CC_x86_64_fuchsia=x86_64-unknown-fuchsia-clang \ |
| 27 | + CFLAGS_x86_64_fuchsia="--target=x86_64-unknown-fuchsia --sysroot=/usr/local/core-linux-amd64-fuchsia-sdk/arch/x64/sysroot -I/usr/local/core-linux-amd64-fuchsia-sdk/pkg/fdio/include" \ |
| 28 | + CXX_x86_64_fuchsia=x86_64-unknown-fuchsia-clang++ \ |
| 29 | + CXXFLAGS_x86_64_fuchsia="--target=x86_64-unknown-fuchsia --sysroot=/usr/local/core-linux-amd64-fuchsia-sdk/arch/x64/sysroot -I/usr/local/core-linux-amd64-fuchsia-sdk/pkg/fdio/include" \ |
| 30 | + LDFLAGS_x86_64_fuchsia="--target=x86_64-unknown-fuchsia --sysroot=/usr/local/core-linux-amd64-fuchsia-sdk/arch/x64/sysroot -L/usr/local/core-linux-amd64-fuchsia-sdk/arch/x64/lib" |
| 31 | + |
| 32 | +WORKDIR /tmp |
| 33 | +COPY scripts/shared.sh /tmp/ |
| 34 | +COPY scripts/build-fuchsia-toolchain.sh /tmp/ |
| 35 | +RUN /tmp/build-fuchsia-toolchain.sh |
| 36 | + |
| 37 | +ENV CARGO_TARGET_X86_64_FUCHSIA_AR /usr/local/bin/llvm-ar |
| 38 | +ENV CARGO_TARGET_X86_64_FUCHSIA_RUSTFLAGS \ |
| 39 | + -C panic=abort \ |
| 40 | + -C force-unwind-tables=yes \ |
| 41 | + -C link-arg=--sysroot=/usr/local/core-linux-amd64-fuchsia-sdk/arch/x64/sysroot \ |
| 42 | + -Lnative=/usr/local/core-linux-amd64-fuchsia-sdk/arch/x64/sysroot/lib \ |
| 43 | + -Lnative=/usr/local/core-linux-amd64-fuchsia-sdk/arch/x64/lib |
| 44 | + |
| 45 | +ENV TARGETS=x86_64-fuchsia |
| 46 | +ENV TARGETS=$TARGETS,x86_64-unknown-linux-gnu |
| 47 | + |
| 48 | +COPY scripts/sccache.sh /scripts/ |
| 49 | +RUN sh /scripts/sccache.sh |
| 50 | + |
| 51 | +ENV RUST_INSTALL_DIR /checkout/obj/install |
| 52 | +RUN mkdir -p $RUST_INSTALL_DIR/etc |
| 53 | + |
| 54 | +ENV RUST_CONFIGURE_ARGS \ |
| 55 | + --prefix=$RUST_INSTALL_DIR \ |
| 56 | + --sysconfdir=etc \ |
| 57 | + --enable-lld \ |
| 58 | + --llvm-libunwind=in-tree \ |
| 59 | + --enable-extended \ |
| 60 | + --disable-docs \ |
| 61 | + --set target.x86_64-fuchsia.cc=/usr/local/bin/clang \ |
| 62 | + --set target.x86_64-fuchsia.cxx=/usr/local/bin/clang++ \ |
| 63 | + --set target.x86_64-fuchsia.ar=/usr/local/bin/llvm-ar \ |
| 64 | + --set target.x86_64-fuchsia.ranlib=/usr/local/bin/llvm-ranlib \ |
| 65 | + --set target.x86_64-fuchsia.linker=/usr/local/bin/ld.lld |
| 66 | +ENV SCRIPT \ |
| 67 | + python3 ../x.py install --target $TARGETS compiler/rustc library/std clippy && \ |
| 68 | + bash ../src/ci/docker/host-x86_64/x86_64-gnu-integration/build-fuchsia.sh |
0 commit comments