Skip to content

Commit e090a15

Browse files
committed
Update default paths of EMSDK components
1 parent 49a02c7 commit e090a15

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

wasm/ci/ci_common/common.jsonnet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ local graal_suite_root = root_ci.graal_suite_root;
117117
setup+: [
118118
['set-export', 'ROOT_DIR', ['pwd']],
119119
['set-export', 'EM_CONFIG', '$ROOT_DIR/.emscripten-config'],
120-
['mx', 'emscripten-init', '--detect', '$EM_CONFIG', '$EMSDK_DIR']
120+
['mx', 'emscripten-init', '$EM_CONFIG', '$EMSDK_DIR']
121121
],
122122
},
123123

wasm/mx.wasm/mx_wasm.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -665,10 +665,10 @@ def emscripten_init(args):
665665
config_path = os.path.join(os.getcwd(), args.config_path)
666666
emsdk_path = args.emsdk_path
667667

668-
llvm_root = os.path.join(emsdk_path, "llvm", "git", "build_master_64", "bin")
669-
binaryen_root = os.path.join(emsdk_path, "binaryen", "master_64bit_binaryen")
670-
emscripten_root = os.path.join(emsdk_path, "emscripten", "master")
671-
node_js = os.path.join(emsdk_path, "node", "12.9.1_64bit", "bin", "node")
668+
llvm_root = os.path.join(emsdk_path, "upstream", "bin")
669+
binaryen_root = os.path.join(emsdk_path, "binaryen", "main_64bit_binaryen")
670+
emscripten_root = os.path.join(emsdk_path, "upstream", "emscripten")
671+
node_js = os.path.join(emsdk_path, "node", "22.16.0_64bit", "bin", "node")
672672

673673
def find_executable(exe_name):
674674
for root, _, files in os.walk(args.emsdk_path):

0 commit comments

Comments
 (0)