Skip to content

Commit 91aaf88

Browse files
committed
Update build of raytrace example to latest nightly
Closes #1935
1 parent 624ff42 commit 91aaf88

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

azure-pipelines.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ jobs:
201201
steps:
202202
- template: ci/azure-install-rust.yml
203203
parameters:
204-
toolchain: nightly-2019-10-04
204+
toolchain: nightly-2020-01-06
205205
# Temporarily disable sccache because it is failing on CI.
206206
# - template: ci/azure-install-sccache.yml
207207
- script: rustup component add rust-src

examples/raytrace-parallel/build.sh

+2-3
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,8 @@ set -ex
1717
# work by default, which the wasm target uses. To work around that we find it
1818
# and put it in PATH
1919

20-
PATH=$PATH:$(dirname $(find $(rustc --print sysroot) -name 'rust-lld')) \
21-
RUSTFLAGS='-C target-feature=+atomics,+bulk-memory' \
22-
cargo build --target wasm32-unknown-unknown --release -Z build-std
20+
RUSTFLAGS='-C target-feature=+atomics,+bulk-memory' \
21+
cargo build -v --target wasm32-unknown-unknown --release -Z build-std=std,panic_abort
2322

2423
# Note the usage of `--no-modules` here which is used to create an output which
2524
# is usable from Web Workers. We notably can't use `--target bundler` since

0 commit comments

Comments
 (0)