Skip to content

Commit

Permalink
parallise cuild scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
gutjuri committed Jan 29, 2024
1 parent 2b25460 commit c2b0a95
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion aby/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ cp ~/source/geninput.py src/examples/
# build ABY
mkdir build && cd build
cmake -DABY_BUILD_EXE=On ..
make
make -j

2 changes: 1 addition & 1 deletion cbmc-gc/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ git checkout -b MPCSOK e57333b19484

# make and install cmbc-gc executables
make minisat2-download
make
make -j

cp bin/cbmc* /usr/bin/
cp bin/circuit* /usr/bin/
Expand Down
4 changes: 2 additions & 2 deletions emp/install.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#!/bin/bash

set -e

wget https://raw.githubusercontent.com/emp-toolkit/emp-readme/master/scripts/install.py
# We don't set "-install" because our docker image already comes with the necessary dependencies.
# See: https://github.com/emp-toolkit/emp-readme/blob/master/scripts/install.py#L12
python3 install.py -install --tool --ot --sh2pc --ag2pc


2 changes: 1 addition & 1 deletion mp-spdz/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ if [ $fromsource = "yes" ]; then
git checkout v$MP_SPDZ_VERSION

make setup
make all
make all -j
else
curl -L https://github.com/data61/MP-SPDZ/releases/download/v$MP_SPDZ_VERSION/mp-spdz-$MP_SPDZ_VERSION.tar.xz | tar xJv
mv mp-spdz-$MP_SPDZ_VERSION MP-SPDZ
Expand Down

0 comments on commit c2b0a95

Please sign in to comment.