summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorHenry <mail@henrygressmann.de>2026-03-31 20:21:18 +0200
committerHenry <mail@henrygressmann.de>2026-03-31 20:21:18 +0200
commit2e40140c053c481820f99ce982201f8a68d21a54 (patch)
treed79fe1d13a2b6c4f52aab4242ae0ee92a93c0138 /examples
parent99f5168bbe5d1dc2bc24e2c5e76e1be4599cabde (diff)
chore: move locals to stack
Signed-off-by: Henry <mail@henrygressmann.de>
Diffstat (limited to 'examples')
-rwxr-xr-xexamples/rust/build.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/rust/build.sh b/examples/rust/build.sh
index e1d320f..567ed56 100755
--- a/examples/rust/build.sh
+++ b/examples/rust/build.sh
@@ -6,8 +6,8 @@ exclude_wat=("tinywasm")
out_dir="./target/wasm32-unknown-unknown/wasm"
dest_dir="out"
-rust_features="+reference-types,+bulk-memory,+mutable-globals,+multivalue,+sign-ext,+nontrapping-fptoint"
-wasmopt_features="--enable-reference-types --enable-bulk-memory --enable-mutable-globals --enable-multivalue --enable-sign-ext --enable-nontrapping-float-to-int"
+rust_features="+simd128,+reference-types,+bulk-memory,+mutable-globals,+multivalue,+sign-ext,+nontrapping-fptoint"
+wasmopt_features="--enable-simd --enable-reference-types --enable-bulk-memory --enable-mutable-globals --enable-multivalue --enable-sign-ext --enable-nontrapping-float-to-int"
# ensure out dir exists
mkdir -p "$dest_dir"