From 434e9e72ea0776bb5392df48bea54eeb94dc9882 Mon Sep 17 00:00:00 2001 From: Toshit Chawda Date: Mon, 22 Jul 2024 16:42:13 -0700 Subject: [PATCH] remove simd from target-features --- client/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/build.sh b/client/build.sh index a218a4e..9f19ef9 100755 --- a/client/build.sh +++ b/client/build.sh @@ -6,7 +6,7 @@ mkdir out/ || true rm -r pkg/ || true mkdir pkg/ -RUSTFLAGS='-C target-feature=+atomics,+bulk-memory,+simd128' cargo build --target wasm32-unknown-unknown -Z build-std=panic_abort,std --release "$@" +RUSTFLAGS='-C target-feature=+atomics,+bulk-memory' cargo build --target wasm32-unknown-unknown -Z build-std=panic_abort,std --release "$@" echo "[epx] cargo finished" wasm-bindgen --weak-refs --target no-modules --no-modules-global epoxy --out-dir out/ ../target/wasm32-unknown-unknown/release/epoxy_client.wasm echo "[epx] wasm-bindgen finished"