Skip to content

Commit 718f4e3

Browse files
committed
Upgrade wabt to 1.0.39
1 parent c4ee58a commit 718f4e3

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/pip.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ env:
1414
# TODO: detect this from repo somehow: https://github.com/halide/Halide/issues/8406
1515
LLVM_VERSION: 21.1.1
1616
FLATBUFFERS_VERSION: 23.5.26
17-
WABT_VERSION: 1.0.36
17+
WABT_VERSION: 1.0.39
1818

1919
concurrency:
2020
group: '${{ github.workflow }}-${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'

cmake/dependencies.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ FetchContent_Declare(
1919
FetchContent_Declare(
2020
wabt
2121
GIT_REPOSITORY https://github.com/WebAssembly/wabt.git
22-
GIT_TAG 3e826ecde1adfba5f88d10d361131405637e65a3 # 1.0.36
22+
GIT_TAG ad75c5edcdff96d73c245b57fbc07607aaca9f95 # 1.0.39
2323
GIT_SHALLOW TRUE
2424
SYSTEM
2525
)

doc/BuildingHalideWithCMake.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ building the core pieces of Halide.
146146
| [Clang] | `==LLVM` | _always_ | |
147147
| [LLD] | `==LLVM` | _always_ | |
148148
| [flatbuffers] | `~=23.5.26` | `WITH_SERIALIZATION=ON` | |
149-
| [wabt] | `==1.0.36` | `Halide_WASM_BACKEND=wabt` | Does not have a stable API; exact version required. |
149+
| [wabt] | `==1.0.39` | `Halide_WASM_BACKEND=wabt` | Does not have a stable API; exact version required. |
150150
| [V8] | trunk | `Halide_WASM_BACKEND=V8` | Difficult to build. See [WebAssembly.md] |
151151
| [Python] | `>=3.10` | `WITH_PYTHON_BINDINGS=ON` | |
152152
| [pybind11] | `~=2.11.1` | `WITH_PYTHON_BINDINGS=ON` | |

src/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -598,7 +598,7 @@ if (MSVC AND Halide_WASM_BACKEND STREQUAL "wabt")
598598
endif ()
599599

600600
if (Halide_WASM_BACKEND STREQUAL "wabt")
601-
find_package(wabt 1.0.36 REQUIRED)
601+
find_package(wabt 1.0.39 REQUIRED)
602602
_Halide_pkgdep(wabt)
603603

604604
if (Halide_BUNDLE_STATIC)

0 commit comments

Comments
 (0)