From c9b9793b302d75fab5e89b78189c5c5fce49aba4 Mon Sep 17 00:00:00 2001 From: Hermet Park Date: Fri, 20 Aug 2021 12:33:18 +0900 Subject: [PATCH] wasm: turn off the vectorization. We can visit this feature later when it's stable. --- wasm_build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wasm_build.sh b/wasm_build.sh index ccd659e..6ab7e63 100755 --- a/wasm_build.sh +++ b/wasm_build.sh @@ -8,7 +8,7 @@ fi if [ ! -d "./builddir_wasm" ]; then sed "s|EMSDK:|$1|g" wasm_cross.txt > /tmp/.wasm_cross.txt - meson -Dbindings=[''] -Db_lto=true -Ddefault_library=static -Dlog=true --cross-file /tmp/.wasm_cross.txt builddir_wasm + meson -Dbindings=[''] -Db_lto=true -Ddefault_library=static -Dvector=false -Dlog=true --cross-file /tmp/.wasm_cross.txt builddir_wasm cp ./test/wasm_test.html builddir_wasm/src/index.html fi -- 2.7.4