Limit build to 2 cores

This commit is contained in:
Matt McWilliams 2021-09-15 16:10:38 -04:00
parent 4e653fbf0b
commit 5c3f04a6ab
3 changed files with 3 additions and 3 deletions

View File

@ -7,4 +7,4 @@ cd unix/
sh prebuild.sh
cd ../
./configure COMPILED_BY="$NAME <$EMAIL>" LDFLAGS="-Wl,-V"
make -j
make -j2

View File

@ -54,7 +54,7 @@ ARGS=(
BOOST_ROOT=$BOOST_ROOT emconfigure ./configure "${ARGS[@]}"
# build dependencies
emmake make -j
emmake make -j2
exit

View File

@ -5,4 +5,4 @@ cd unix/
sh prebuild.sh
cd ../
emconfigure ./configure COMPILED_BY="$NAME <$EMAIL>" LDFLAGS="-Wl,-V"
emmake make -j
emmake make -j2