From cd10f4ee230a865380ecdd1edd6729792e10d143 Mon Sep 17 00:00:00 2001 From: Jinny You Date: Fri, 11 Oct 2024 15:21:52 +0900 Subject: [PATCH] wasm: update wasm build script Fixed typo. It breaks build progress now. --- wasm_build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wasm_build.sh b/wasm_build.sh index db6f2516..8227953e 100755 --- a/wasm_build.sh +++ b/wasm_build.sh @@ -10,7 +10,7 @@ if [ -z "$2" ]; then EMSDK="$1" fi -if [ ! -d "./build_wasm32_$BACKEND" ]; then +if [ ! -d "./build_wasm" ]; then if [[ "$BACKEND" == "wg" ]]; then sed "s|EMSDK:|$EMSDK|g" ./cross/wasm32_wg.txt > /tmp/.wasm_cross.txt meson -Db_lto=true -Ddefault_library=static -Dstatic=true -Dloaders="all" -Dsavers="all" -Dthreads=false -Dbindings="wasm_beta" -Dengines="wg" --cross-file /tmp/.wasm_cross.txt build_wasm