Skip to content

Commit

Permalink
Fix Web build, update Emscripten SDK to 3.1.60 (#8350)
Browse files Browse the repository at this point in the history
  • Loading branch information
bejado authored Jan 15, 2025
1 parent 026b985 commit ac0aea9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion BUILDING.md
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ same version that our continuous builds use.

```shell
cd <your chosen parent folder for the emscripten SDK>
curl -L https://github.com/emscripten-core/emsdk/archive/refs/tags/3.1.15.zip > emsdk.zip
curl -L https://github.com/emscripten-core/emsdk/archive/refs/tags/3.1.60.zip > emsdk.zip
unzip emsdk.zip ; mv emsdk-* emsdk ; cd emsdk
python ./emsdk.py install latest
python ./emsdk.py activate latest
Expand Down
2 changes: 1 addition & 1 deletion build/web/ci-common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ chmod +x ninja
export PATH="$PWD:$PATH"

# Install emscripten.
curl -L https://github.com/emscripten-core/emsdk/archive/refs/tags/3.1.15.zip > emsdk.zip
curl -L https://github.com/emscripten-core/emsdk/archive/refs/tags/3.1.60.zip > emsdk.zip
unzip emsdk.zip ; mv emsdk-* emsdk ; cd emsdk
./emsdk install latest
./emsdk activate latest
Expand Down
2 changes: 1 addition & 1 deletion web/filament-js/jsbindings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1050,7 +1050,7 @@ class_<RenderableManager>("RenderableManager")

.class_function("Builder", (RenderableBuilder (*)(int)) [] (int n) {
return RenderableBuilder(n);
})
}, return_value_policy::take_ownership())

.function("destroy", &RenderableManager::destroy)
.function("setAxisAlignedBoundingBox", &RenderableManager::setAxisAlignedBoundingBox)
Expand Down

0 comments on commit ac0aea9

Please sign in to comment.