Limit build to 2 cores
This commit is contained in:
parent
4e653fbf0b
commit
5c3f04a6ab
|
@ -7,4 +7,4 @@ cd unix/
|
||||||
sh prebuild.sh
|
sh prebuild.sh
|
||||||
cd ../
|
cd ../
|
||||||
./configure COMPILED_BY="$NAME <$EMAIL>" LDFLAGS="-Wl,-V"
|
./configure COMPILED_BY="$NAME <$EMAIL>" LDFLAGS="-Wl,-V"
|
||||||
make -j
|
make -j2
|
|
@ -54,7 +54,7 @@ ARGS=(
|
||||||
BOOST_ROOT=$BOOST_ROOT emconfigure ./configure "${ARGS[@]}"
|
BOOST_ROOT=$BOOST_ROOT emconfigure ./configure "${ARGS[@]}"
|
||||||
|
|
||||||
# build dependencies
|
# build dependencies
|
||||||
emmake make -j
|
emmake make -j2
|
||||||
|
|
||||||
exit
|
exit
|
||||||
|
|
||||||
|
|
|
@ -5,4 +5,4 @@ cd unix/
|
||||||
sh prebuild.sh
|
sh prebuild.sh
|
||||||
cd ../
|
cd ../
|
||||||
emconfigure ./configure COMPILED_BY="$NAME <$EMAIL>" LDFLAGS="-Wl,-V"
|
emconfigure ./configure COMPILED_BY="$NAME <$EMAIL>" LDFLAGS="-Wl,-V"
|
||||||
emmake make -j
|
emmake make -j2
|
Loading…
Reference in New Issue