File tree 3 files changed +7
-9
lines changed
3 files changed +7
-9
lines changed Original file line number Diff line number Diff line change @@ -15,9 +15,7 @@ __pycache__
15
15
# File that get download/extracted by emsdk itself
16
16
/ccache
17
17
/gnu
18
- /upstream
19
- /fastcomp
20
- /fastcomp-clang /
18
+ /prebuilt
21
19
/llvm
22
20
/ninja
23
21
/releases
Original file line number Diff line number Diff line change @@ -1919,9 +1919,9 @@ def install_sdk(self):
1919
1919
return False
1920
1920
1921
1921
if getattr (self , 'custom_install_script' , None ) == 'emscripten_npm_install' :
1922
- # upstream tools have hardcoded paths that are not stored in emsdk_manifest.json registry
1923
- install_path = 'upstream'
1924
- emscripten_dir = os .path .join (EMSDK_PATH , install_path , 'emscripten' )
1922
+ # prebuilt sdk tools have hardcoded paths that are not stored in
1923
+ # emsdk_manifest.json registry
1924
+ emscripten_dir = os .path .join (EMSDK_PATH , 'prebuilt' , 'emscripten' )
1925
1925
# Older versions of the sdk did not include the node_modules directory
1926
1926
# and require `npm ci` to be run post-install
1927
1927
if not os .path .exists (os .path .join (emscripten_dir , 'node_modules' )):
@@ -2244,7 +2244,7 @@ def load_releases_info():
2244
2244
2245
2245
2246
2246
def get_installed_sdk_version ():
2247
- version_file = sdk_path (os .path .join ('upstream ' , '.emsdk_version' ))
2247
+ version_file = sdk_path (os .path .join ('prebuilt ' , '.emsdk_version' ))
2248
2248
if not os .path .exists (version_file ):
2249
2249
return None
2250
2250
with open (version_file ) as f :
Original file line number Diff line number Diff line change 38
38
"macos_url" : " https://storage.googleapis.com/webassembly/emscripten-releases-builds/mac/%releases-tag%/wasm-binaries.tbz2" ,
39
39
"windows_url" : " https://storage.googleapis.com/webassembly/emscripten-releases-builds/win/%releases-tag%/wasm-binaries.zip" ,
40
40
"zipfile_prefix" : " %releases-tag%-" ,
41
- "install_path" : " upstream " ,
41
+ "install_path" : " prebuilt " ,
42
42
"activated_path" : " %installation_dir%/emscripten" ,
43
43
"activated_cfg" : " LLVM_ROOT='%installation_dir%/bin';BINARYEN_ROOT='%installation_dir%';EMSCRIPTEN_ROOT='%installation_dir%/emscripten'" ,
44
44
"emscripten_releases_hash" : " %releases-tag%"
51
51
"macos_url" : " https://storage.googleapis.com/webassembly/emscripten-releases-builds/mac/%releases-tag%/wasm-binaries-arm64.tbz2" ,
52
52
"linux_url" : " https://storage.googleapis.com/webassembly/emscripten-releases-builds/linux/%releases-tag%/wasm-binaries-arm64.tbz2" ,
53
53
"zipfile_prefix" : " %releases-tag%-" ,
54
- "install_path" : " upstream " ,
54
+ "install_path" : " prebuilt " ,
55
55
"activated_path" : " %installation_dir%/emscripten" ,
56
56
"activated_cfg" : " LLVM_ROOT='%installation_dir%/bin';BINARYEN_ROOT='%installation_dir%';EMSCRIPTEN_ROOT='%installation_dir%/emscripten'" ,
57
57
"emscripten_releases_hash" : " %releases-tag%"
You can’t perform that action at this time.
0 commit comments