Skip to content

Commit

Permalink
Significantly speedup javascript bindings tasks by skipping libbls te…
Browse files Browse the repository at this point in the history
…sts and benchmarks (#372)
  • Loading branch information
AmineKhaldi committed Jun 15, 2023
1 parent 23fef78 commit 0b9142e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion emsdk_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ rm -rf js_build
mkdir -p js_build
cd js_build

emcmake cmake -G "Unix Makefiles" ..
emcmake cmake -G "Unix Makefiles" -DBUILD_BLS_TESTS=0 -DBUILD_BLS_BENCHMARKS=0 ..
emmake make
2 changes: 1 addition & 1 deletion js_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ git submodule update --init --recursive
mkdir js_build
cd js_build

cmake ../ -DCMAKE_TOOLCHAIN_FILE=$(dirname $(realpath $(which emcc)))/cmake/Modules/Platform/Emscripten.cmake
cmake ../ -DBUILD_BLS_TESTS=0 -DBUILD_BLS_BENCHMARKS=0 -DCMAKE_TOOLCHAIN_FILE=$(dirname $(realpath $(which emcc)))/cmake/Modules/Platform/Emscripten.cmake
cmake --build . --

0 comments on commit 0b9142e

Please sign in to comment.