Skip to content

Commit

Permalink
Fix review
Browse files Browse the repository at this point in the history
  • Loading branch information
Changqing-JING committed Jan 18, 2024
1 parent d59d079 commit e3932aa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
docker run -di --name emscripten -v $(pwd):/src emscripten/emsdk:latest bash
docker exec emscripten emcc -v
docker exec emscripten emcmake cmake -B emscripten -DWERROR=ON -DBUILD_TESTS=OFF
docker exec emscripten bash -c "cd /src/emscripten && make -j $(nproc)"
docker exec -w /src/emscripten emscripten make -j $(nproc)
wasi:
name: wasi
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -823,7 +823,7 @@ if (EMSCRIPTEN)
-s MODULARIZE=1
-s EXPORT_NAME=\"'WabtModule'\"
-s WASM=0
-s EXPORTED_RUNTIME_METHODS="[writeAsciiToMemory]"
-s EXPORTED_RUNTIME_METHODS=writeAsciiToMemory
-Oz
)
string(REPLACE ";" " " LIBWABT_LINK_FLAGS_STR "${LIBWABT_LINK_FLAGS}")
Expand Down

0 comments on commit e3932aa

Please sign in to comment.