Skip to content

Commit b467867

Browse files
committed
Update wabt version
1 parent 2c5edc0 commit b467867

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

script/build_wabt.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ def cd(dst: str) -> typing.Generator[None, typing.Any, None]:
2323
root = os.path.dirname(os.path.dirname(__file__))
2424
os.chdir(root)
2525

26-
version = '1.0.37'
26+
version = '1.0.39'
2727
url = ''
2828
match platform.system().lower():
2929
case 'darwin':
30-
url = f'https://github.com/WebAssembly/wabt/releases/download/{version}/wabt-{version}-macos-14.tar.gz'
30+
url = f'https://github.com/WebAssembly/wabt/releases/download/{version}/wabt-{version}-macos-arm64.tar.gz'
3131
case 'linux':
32-
url = f'https://github.com/WebAssembly/wabt/releases/download/{version}/wabt-{version}-ubuntu-20.04.tar.gz'
32+
url = f'https://github.com/WebAssembly/wabt/releases/download/{version}/wabt-{version}-linux-x64.tar.gz'
3333
case 'windows':
34-
url = f'https://github.com/WebAssembly/wabt/releases/download/{version}/wabt-{version}-windows.tar.gz'
34+
url = f'https://github.com/WebAssembly/wabt/releases/download/{version}/wabt-{version}-windows-x64.tar.gz'
3535
case _:
3636
assert 0
3737
out = os.path.basename(url)

0 commit comments

Comments
 (0)