Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

install scripts: use multiple cpu cores for builds #607

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions installing_deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,15 @@ 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
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
Expand All @@ -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

Expand Down
2 changes: 1 addition & 1 deletion var/www/update_thirdparty.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading