Skip to content

Commit 51324b9

Browse files
committed
Revert "Upgrade flatbuffers to 25.2.10"
This reverts commit 0a4ba1f.
1 parent 6da9acd commit 51324b9

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
@@ -13,7 +13,7 @@ on:
1313
env:
1414
# TODO: detect this from repo somehow: https://github.com/halide/Halide/issues/8406
1515
LLVM_VERSION: 20.1.8
16-
FLATBUFFERS_VERSION: 25.2.10
16+
FLATBUFFERS_VERSION: 23.5.26
1717
WABT_VERSION: 1.0.36
1818

1919
concurrency:

cmake/dependencies.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ include(FetchContent)
33
FetchContent_Declare(
44
flatbuffers
55
GIT_REPOSITORY https://github.com/google/flatbuffers.git
6-
GIT_TAG 1c514626e83c20fffa8557e75641848e1e15cd5e # v25.2.10
6+
GIT_TAG 0100f6a5779831fa7a651e4b67ef389a8752bd9b # v23.5.26
77
GIT_SHALLOW TRUE
88
)
99

doc/BuildingHalideWithCMake.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ building the core pieces of Halide.
145145
| [LLVM] | _see policy below_ | _always_ | WebAssembly and X86 targets are required. |
146146
| [Clang] | `==LLVM` | _always_ | |
147147
| [LLD] | `==LLVM` | _always_ | |
148-
| [flatbuffers] | `~=25.2.10` | `WITH_SERIALIZATION=ON` | |
148+
| [flatbuffers] | `~=23.5.26` | `WITH_SERIALIZATION=ON` | |
149149
| [wabt] | `==1.0.36` | `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.9` | `WITH_PYTHON_BINDINGS=ON` | |

src/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -531,7 +531,7 @@ if (WITH_SERIALIZATION)
531531
# package in terms of the case of the relevant CMake files. Fortunately,
532532
# the IMPORTED targets appear to be consistently named `flatbuffers`.
533533
find_package(
534-
flatbuffers 25.2.10 REQUIRED
534+
flatbuffers 23.5.26 REQUIRED
535535
NAMES flatbuffers Flatbuffers FlatBuffers
536536
)
537537
_Halide_pkgdep(flatbuffers)

0 commit comments

Comments
 (0)