Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/pip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ env:
# TODO: detect this from repo somehow: https://github.com/halide/Halide/issues/8406
LLVM_VERSION: 21.1.1
FLATBUFFERS_VERSION: 23.5.26
WABT_VERSION: 1.0.36
WABT_VERSION: 1.0.39

concurrency:
group: '${{ github.workflow }}-${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
Expand Down
2 changes: 1 addition & 1 deletion cmake/dependencies.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ FetchContent_Declare(
FetchContent_Declare(
wabt
GIT_REPOSITORY https://github.com/WebAssembly/wabt.git
GIT_TAG 3e826ecde1adfba5f88d10d361131405637e65a3 # 1.0.36
GIT_TAG ad75c5edcdff96d73c245b57fbc07607aaca9f95 # 1.0.39
GIT_SHALLOW TRUE
SYSTEM
)
Expand Down
2 changes: 1 addition & 1 deletion doc/BuildingHalideWithCMake.md
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ building the core pieces of Halide.
| [Clang] | `==LLVM` | _always_ | |
| [LLD] | `==LLVM` | _always_ | |
| [flatbuffers] | `~=23.5.26` | `WITH_SERIALIZATION=ON` | |
| [wabt] | `==1.0.36` | `Halide_WASM_BACKEND=wabt` | Does not have a stable API; exact version required. |
| [wabt] | `==1.0.39` | `Halide_WASM_BACKEND=wabt` | Does not have a stable API; exact version required. |
| [V8] | trunk | `Halide_WASM_BACKEND=V8` | Difficult to build. See [WebAssembly.md] |
| [Python] | `>=3.9` | `WITH_PYTHON_BINDINGS=ON` | |
| [pybind11] | `~=2.11.1` | `WITH_PYTHON_BINDINGS=ON` | |
Expand Down
2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -598,7 +598,7 @@ if (MSVC AND Halide_WASM_BACKEND STREQUAL "wabt")
endif ()

if (Halide_WASM_BACKEND STREQUAL "wabt")
find_package(wabt 1.0.36 REQUIRED)
find_package(wabt 1.0.39 REQUIRED)
_Halide_pkgdep(wabt)

if (Halide_BUNDLE_STATIC)
Expand Down
Loading