File tree 3 files changed +3
-4
lines changed
examples/raytrace-parallel 3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 87
87
steps :
88
88
- template : ci/azure-install-rust.yml
89
89
parameters :
90
- toolchain : nightly-2021-03-28
90
+ toolchain : nightly-2021-05-09
91
91
- template : ci/azure-install-node.yml
92
92
- script : cargo test --target wasm32-unknown-unknown --features nightly --test wasm
93
93
@@ -204,7 +204,7 @@ jobs:
204
204
steps :
205
205
- template : ci/azure-install-rust.yml
206
206
parameters :
207
- toolchain : nightly-2020-08-27
207
+ toolchain : nightly-2021-05-09
208
208
- script : rustup component add rust-src
209
209
displayName : " install rust-src"
210
210
- script : |
Original file line number Diff line number Diff line change @@ -113,7 +113,6 @@ impl Config {
113
113
mem. maximum = Some ( cmp:: max ( self . maximum_memory / PAGE_SIZE , prev_max) ) ;
114
114
assert ! ( mem. data_segments. is_empty( ) ) ;
115
115
116
- delete_synthetic_func ( module, "__wasm_init_memory" ) ?;
117
116
let tls = Tls {
118
117
init : delete_synthetic_func ( module, "__wasm_init_tls" ) ?,
119
118
size : delete_synthetic_global ( module, "__tls_size" ) ?,
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ set -ex
12
12
# features enabled, ensuring that LLVM will generate atomic instructions,
13
13
# shared memory, passive segments, etc.
14
14
15
- RUSTFLAGS=' -C target-feature=+atomics,+bulk-memory' \
15
+ RUSTFLAGS=' -C target-feature=+atomics,+bulk-memory,+mutable-globals ' \
16
16
cargo build --target wasm32-unknown-unknown --release -Z build-std=std,panic_abort
17
17
18
18
# Note the usage of `--target no-modules` here which is required for passing
You can’t perform that action at this time.
0 commit comments