From 1a3b5d24fcdae416624724e6a3916395bb86247f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Joga?= Date: Wed, 10 Jul 2024 16:45:58 +0200 Subject: [PATCH] install scripts: use multiple cpu cores for builds --- installing_deps.sh | 6 +++--- var/www/update_thirdparty.sh | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/installing_deps.sh b/installing_deps.sh index 996d0dfb..ac2326de 100755 --- a/installing_deps.sh +++ b/installing_deps.sh @@ -45,7 +45,7 @@ git submodule update --init test ! -d redis/ && git clone https://github.com/antirez/redis.git pushd redis/ git checkout 5.0 -make +make -j popd # Faup @@ -53,7 +53,7 @@ test ! -d faup/ && git clone https://github.com/stricaud/faup.git pushd faup/ test ! -d build && mkdir build cd build -cmake .. && make +cmake .. && make -j sudo make install echo '/usr/local/lib' | sudo tee -a /etc/ld.so.conf.d/faup.conf sudo ldconfig @@ -74,7 +74,7 @@ test ! -d pgpdump && git clone https://github.com/kazu-yamamoto/pgpdump.git pushd pgpdump/ autoreconf -fiW all ./configure -make +make -j sudo make install popd diff --git a/var/www/update_thirdparty.sh b/var/www/update_thirdparty.sh index 44252d62..97219767 100755 --- a/var/www/update_thirdparty.sh +++ b/var/www/update_thirdparty.sh @@ -95,7 +95,7 @@ unzip temp/yara.zip -d temp/ pushd temp/yara-${YARA_VERSION} ./bootstrap.sh ./configure -make +make -j sudo make install make check popd