1- FROM ubuntu:18.04 as reference-sysroot
1+ # In the first container we want to assemble the `wasi-sysroot` by compiling it
2+ # from source. This requires a clang 8.0+ compiler with enough wasm support and
3+ # then we're just running a standard `make` inside of what we clone.
4+ FROM ubuntu:18.04 as wasi-sysroot
25
36RUN apt-get update && \
47 apt-get install -y --no-install-recommends \
@@ -14,15 +17,29 @@ RUN apt-get update && \
1417 ssh \
1518 xz-utils
1619
20+ # Fetch clang 8.0+ which is used to compile the wasi target and link our
21+ # programs together.
1722RUN curl http://releases.llvm.org/8.0.0/clang+llvm-8.0.0-x86_64-linux-gnu-ubuntu-18.04.tar.xz | tar xJf -
1823RUN mv /clang+llvm-8.0.0-x86_64-linux-gnu-ubuntu-18.04 /wasmcc
1924
20- RUN git clone https://github.com/CraneStation/reference-sysroot-wasi && \
21- cd reference-sysroot-wasi && \
22- git reset --hard d5a609fe63926533e1054e539ba5f2693d51bdf5
23- RUN make -C reference-sysroot-wasi install -j $(nproc) WASM_CC=/wasmcc/bin/clang INSTALL_DIR=/wasm-sysroot
24- COPY docker/wasm32-unknown-wasi/clang.sh /wasm-sysroot/bin/clang
25+ # Note that we're using `git reset --hard` to pin to a specific commit for
26+ # verification for now. The sysroot is currently in somewhat of a state of flux
27+ # and is expected to have breaking changes, so this is an attempt to mitigate
28+ # those breaking changes on `libc`'s own CI
29+ RUN git clone https://github.com/CraneStation/wasi-sysroot && \
30+ cd wasi-sysroot && \
31+ git reset --hard 320054e84f8f2440def3b1c8700cedb8fd697bf8
32+ RUN make -C wasi-sysroot install -j $(nproc) WASM_CC=/wasmcc/bin/clang INSTALL_DIR=/wasi-sysroot
2533
34+ # This is a small wrapper script which executes the actual clang binary in
35+ # `/wasmcc` and then is sure to pass the right `--sysroot` argument which we
36+ # just built above.
37+ COPY docker/wasm32-unknown-wasi/clang.sh /wasi-sysroot/bin/clang
38+
39+ # In the second container we're going to build the `wasmtime` binary which is
40+ # used to execute wasi executables. This is a standard Rust project so we're
41+ # just checking out a known revision (which pairs with the sysroot one we
42+ # downlaoded above) and then we're building it with Cargo
2643FROM ubuntu:18.04 as wasmtime
2744
2845RUN apt-get update && \
@@ -43,13 +60,12 @@ ENV PATH=/root/.cargo/bin:$PATH
4360RUN apt-get install -y --no-install-recommends python
4461RUN git clone https://github.com/CraneStation/wasmtime-wasi wasmtime && \
4562 cd wasmtime && \
46- git reset --hard a7ac05df74759a7536b2b1e30adc6ff4867e36c3
47-
48- # Install wasmtime in /usr/bin, but make sure to remove rust afterwards because
49- # we don't want it conflicting with the main Rust we're using to compile
50- # `libc`.
63+ git reset --hard 4fe2d6084e5b5cc74e69a26860f12750df51d339
5164RUN cargo build --release --manifest-path wasmtime/Cargo.toml
5265
66+ # And finally in the last image we're going to assemble everything together.
67+ # We'll install things needed at runtime for now and then copy over the
68+ # sysroot/wasmtime artifacts into their final location.
5369FROM ubuntu:18.04
5470
5571RUN apt-get update && \
@@ -58,12 +74,19 @@ RUN apt-get update && \
5874 libc6-dev \
5975 libxml2
6076
77+ # Copy over clang we downloaded to link executables ...
6178COPY --from=reference-sysroot /wasmcc /wasmcc/
62- COPY --from=reference-sysroot /wasm-sysroot/ /wasm-sysroot/
79+ # ... and the sysroot we built to link executables against ...
80+ COPY --from=reference-sysroot /wasi-sysroot/ /wasi-sysroot/
81+ # ... and finally wasmtime to actually execute binaries
6382COPY --from=wasmtime /wasmtime/target/release/wasmtime /usr/bin/
6483
84+ # Of note here is our clang wrapper which just executes a normal clang
85+ # executable with the right sysroot, and then we're sure to turn off the
86+ # crt-static feature to ensure that the CRT that we're specifying with `clang`
87+ # is used.
6588ENV CARGO_TARGET_WASM32_UNKNOWN_WASI_RUNNER=wasmtime \
66- CARGO_TARGET_WASM32_UNKNOWN_WASI_LINKER=/wasm -sysroot/bin/clang \
67- CC_wasm32_unknown_wasi=/wasm -sysroot/bin/clang \
89+ CARGO_TARGET_WASM32_UNKNOWN_WASI_LINKER=/wasi -sysroot/bin/clang \
90+ CC_wasm32_unknown_wasi=/wasi -sysroot/bin/clang \
6891 PATH=$PATH:/rust/bin \
6992 RUSTFLAGS=-Ctarget-feature=-crt-static
0 commit comments