Skip to content

Commit 7d7f0b4

Browse files
authored
Upgrade wabt to version 1.0.39 (#8923)
1 parent 10f3261 commit 7d7f0b4

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/pip.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ env:
1010
# TODO: detect this from repo somehow: https://github.com/halide/Halide/issues/8406
1111
LLVM_VERSION: 21.1.8
1212
FLATBUFFERS_VERSION: 23.5.26
13-
WABT_VERSION: 1.0.36
13+
WABT_VERSION: 1.0.39
1414

1515
concurrency:
1616
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
@@ -588,7 +588,7 @@ if (MSVC AND Halide_WASM_BACKEND STREQUAL "wabt")
588588
endif ()
589589

590590
if (Halide_WASM_BACKEND STREQUAL "wabt")
591-
find_package(wabt 1.0.36 REQUIRED)
591+
find_package(wabt 1.0.39 REQUIRED)
592592
_Halide_pkgdep(wabt)
593593

594594
if (Halide_USE_FETCHCONTENT AND NOT BUILD_SHARED_LIBS)

0 commit comments

Comments
 (0)