diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2018-09-06 15:34:05 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-09-06 15:34:05 -0700 |
| commit | c1965d33a8b276a28d32b77a09b20ccb68bc993c (patch) | |
| tree | fe07a7d8182f4f7a2ba1e13b2d80e2bf124c257b /library/stdarch/ci/docker | |
| parent | b1dad3e46e232a7eb0d8e2a7bc7ef8e20bd89d91 (diff) | |
| download | rust-c1965d33a8b276a28d32b77a09b20ccb68bc993c.tar.gz rust-c1965d33a8b276a28d32b77a09b20ccb68bc993c.zip | |
Rename `wasm32` memory intrinsics (#560)
The official name of the memory intrinsics has changed to `memory.size` and `memory.grow`, so let's reflect that with our naming as well! Additionally they have an argument of which memory to operate on with LLVM and must always be zero currently.
Diffstat (limited to 'library/stdarch/ci/docker')
| -rw-r--r-- | library/stdarch/ci/docker/wasm32-unknown-unknown/Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/stdarch/ci/docker/wasm32-unknown-unknown/Dockerfile b/library/stdarch/ci/docker/wasm32-unknown-unknown/Dockerfile index 56eef71204f..f905cf1a36e 100644 --- a/library/stdarch/ci/docker/wasm32-unknown-unknown/Dockerfile +++ b/library/stdarch/ci/docker/wasm32-unknown-unknown/Dockerfile @@ -17,9 +17,9 @@ RUN make -C wabt -j$(nproc) ENV PATH=$PATH:/wabt/bin # Install `wasm-bindgen-test-runner` -RUN curl -L https://github.com/rustwasm/wasm-bindgen/releases/download/0.2.16/wasm-bindgen-0.2.16-x86_64-unknown-linux-musl.tar.gz \ +RUN curl -L https://github.com/rustwasm/wasm-bindgen/releases/download/0.2.19/wasm-bindgen-0.2.19-x86_64-unknown-linux-musl.tar.gz \ | tar xzf - -ENV PATH=$PATH:/wasm-bindgen-0.2.16-x86_64-unknown-linux-musl +ENV PATH=$PATH:/wasm-bindgen-0.2.19-x86_64-unknown-linux-musl ENV CARGO_TARGET_WASM32_UNKNOWN_UNKNOWN_RUNNER=wasm-bindgen-test-runner # Install `node` |
