Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 8d2bba7

Browse files
committed
Fix config_site settings
1 parent 5916540 commit 8d2bba7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

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)