Skip to content

Commit

Permalink
hardcode emsdk version
Browse files Browse the repository at this point in the history
  • Loading branch information
bernhardfritz committed Feb 8, 2023
1 parent 718d35d commit cb7d02f
Show file tree
Hide file tree
Showing 13 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ jobs:
elif [ "${{ matrix.USE_EMSCRIPTEN }}" = 1 ]; then
git clone https://github.com/emscripten-core/emsdk.git
cd emsdk
./emsdk install latest
./emsdk activate latest
./emsdk install 3.1.17
./emsdk activate 3.1.17
source ./emsdk_env.sh
cd ..
emmake make
Expand Down
Binary file modified c/p8g.dll
Binary file not shown.
Binary file modified c/p8g.wasm
Binary file not shown.
2 changes: 1 addition & 1 deletion docs/docs/get-started/c++.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ em++ -std=c++11 -s MAIN_MODULE=2 -sEXPORTED_FUNCTIONS=_main -o hello_rectangle.h
emrun --no_browser hello_rectangle.html
```

Tested on macOS Mojave 10.14.6 with Emscripten SDK 3.1.8 downloaded and installed from https://emscripten.org/docs/getting_started/downloads.html.
Tested on macOS Mojave 10.14.6 with Emscripten SDK 3.1.17 downloaded and installed from https://emscripten.org/docs/getting_started/downloads.html.

</TabItem>
</Tabs>
2 changes: 1 addition & 1 deletion docs/docs/get-started/c.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ emcc -s MAIN_MODULE=2 -sEXPORTED_FUNCTIONS=_main -o hello_rectangle.html hello_r
emrun --no_browser hello_rectangle.html
```

Tested on macOS Mojave 10.14.6 with Emscripten SDK 3.1.8 downloaded and installed from https://emscripten.org/docs/getting_started/downloads.html.
Tested on macOS Mojave 10.14.6 with Emscripten SDK 3.1.17 downloaded and installed from https://emscripten.org/docs/getting_started/downloads.html.

</TabItem>
</Tabs>
Binary file modified docs/static/examples/astar.wasm
Binary file not shown.
Binary file modified docs/static/examples/fireworks.wasm
Binary file not shown.
Binary file modified docs/static/examples/flappy-bird.wasm
Binary file not shown.
Binary file modified docs/static/examples/keyboard-events.wasm
Binary file not shown.
Binary file modified docs/static/examples/mouse-events.wasm
Binary file not shown.
Binary file modified docs/static/examples/noise.wasm
Binary file not shown.
Binary file modified docs/static/examples/p8g.wasm
Binary file not shown.
Binary file modified docs/static/examples/quadtree.wasm
Binary file not shown.

0 comments on commit cb7d02f

Please sign in to comment.