Skip to content

Commit 6e3d448

Browse files
committed
fix: correct wasm_build config site
Signed-off-by: Ho Kim <ho.kim@ulagbulag.io>
1 parent 460ad1a commit 6e3d448

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Tools/wasm/wasm_build.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ def _check_emscripten() -> None:
291291
EMSCRIPTEN = Platform(
292292
"emscripten",
293293
pythonexe="python.js",
294-
config_site=WASMTOOLS / "config.site-wasm32-emscripten",
294+
config_site=WASMTOOLS / "emscripten" / "config.site-wasm32-emscripten",
295295
configure_wrapper=EMSCRIPTEN_ROOT / "emconfigure",
296296
ports=EMSCRIPTEN_ROOT / "embuilder",
297297
cc=EMSCRIPTEN_ROOT / "emcc",
@@ -319,7 +319,7 @@ def _check_wasi() -> None:
319319
WASI = Platform(
320320
"wasi",
321321
pythonexe="python.wasm",
322-
config_site=WASMTOOLS / "config.site-wasm32-wasi",
322+
config_site=WASMTOOLS / "wasi" / "config.site-wasm32-wasi",
323323
configure_wrapper=WASMTOOLS / "wasi-env",
324324
ports=None,
325325
cc=WASI_SDK_PATH / "bin" / "clang",

0 commit comments

Comments
 (0)