Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .devcontainer/features/wasi-sdk/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ if [ "$arch" == "aarch64" ]; then
arch="arm64"
fi

wget -nd -P /tmp/ https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-25/wasi-sdk-25.0-${arch}-linux.deb
wget -nd -P /tmp/ https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-29/wasi-sdk-29.0-${arch}-linux.deb

dpkg -i /tmp/wasi-sdk-25.0-${arch}-linux.deb
dpkg -i /tmp/wasi-sdk-29.0-${arch}-linux.deb
10 changes: 6 additions & 4 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,8 @@ FetchContent_GetProperties(utfcpp)
#
FetchContent_Declare(
nlohmann_json
URL https://github.com/nlohmann/json/releases/download/v3.11.3/include.zip
URL_HASH SHA256=a22461d13119ac5c78f205d3df1db13403e58ce1bb1794edc9313677313f4a9d
URL https://github.com/nlohmann/json/releases/download/v3.12.0/include.zip
URL_HASH SHA256=b8cb0ef2dd7f57f18933997c9934bb1fa962594f701cd5a8d3c2c80541559372
)

FetchContent_MakeAvailable(nlohmann_json)
Expand All @@ -111,7 +111,8 @@ set_target_properties(nlohmann_json::nlohmann_json PROPERTIES

FetchContent_Declare(
wasi_sysroot
URL https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-27/wasi-sysroot-27.0.tar.gz
URL https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-29/wasi-sysroot-29.0.tar.gz
URL_HASH SHA256=d99d5c4b277a725b7b56bf9d591609972ecac3207520a66408927280f191f6c7
)

FetchContent_MakeAvailable(wasi_sysroot)
Expand All @@ -129,7 +130,8 @@ if (CXX_ENABLE_FLATBUFFERS)

FetchContent_Declare(
flatbuffers
URL https://github.com/google/flatbuffers/archive/refs/tags/v25.1.24.tar.gz
URL https://github.com/google/flatbuffers/archive/refs/tags/v25.1.24.tar.gz
URL_HASH SHA256=ffc668a310e77607d393f3c18b32715f223da1eac4c4d6e0579a11df8e6b59cf
)

FetchContent_MakeAvailable(flatbuffers)
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.emsdk
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM emscripten/emsdk:4.0.16 as em
FROM emscripten/emsdk:4.0.20 as em

RUN apt-get update && apt-get install -y \
ninja-build \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.wasi
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/webassembly/wasi-sdk:wasi-sdk-27
FROM ghcr.io/webassembly/wasi-sdk:wasi-sdk-29

RUN apt-get update && apt-get install -y \
g++ \
Expand Down
Loading