File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 42
42
43
43
emscripten_releases_repo = 'https://chromium.googlesource.com/emscripten-releases'
44
44
45
- emscripten_releases_download_url_template = "https://storage.googleapis.com/webassembly/emscripten-releases-builds/%s/%s/wasm-binaries.%s"
45
+ emscripten_releases_download_url_template = "https://storage.googleapis.com/webassembly/emscripten-releases-builds/%s/%s/wasm-binaries%s .%s"
46
46
47
47
# This was previously `master.zip` but we are transitioning to `main` and
48
48
# `HEAD.zip` works for both cases. In future we could switch this to
@@ -2166,10 +2166,14 @@ def get_emscripten_releases_tot():
2166
2166
# The recent releases are the latest hashes in the git repo. There
2167
2167
# may not be a build for the most recent ones yet; find the last
2168
2168
# that does.
2169
+ arch = ''
2170
+ if ARCH == 'aarch64' :
2171
+ arch = '-arm64'
2169
2172
for release in recent_releases :
2170
2173
url = emscripten_releases_download_url_template % (
2171
2174
os_name (),
2172
2175
release ,
2176
+ arch ,
2173
2177
'tbz2' if not WINDOWS else 'zip'
2174
2178
)
2175
2179
try :
Original file line number Diff line number Diff line change 108
108
"bitness" : 64 ,
109
109
"arch" : " aarch64" ,
110
110
"macos_url" : " https://storage.googleapis.com/webassembly/emscripten-releases-builds/mac/%releases-tag%/wasm-binaries-arm64.tbz2" ,
111
+ "linux_url" : " https://storage.googleapis.com/webassembly/emscripten-releases-builds/linux/%releases-tag%/wasm-binaries-arm64.tbz2" ,
111
112
"zipfile_prefix" : " %releases-tag%-" ,
112
113
"install_path" : " upstream" ,
113
114
"activated_path" : " %installation_dir%/emscripten" ,
You can’t perform that action at this time.
0 commit comments