Skip to content
This repository was archived by the owner on Nov 1, 2021. It is now read-only.

Commit

Permalink
full-build: give up on parallel builds for now
Browse files Browse the repository at this point in the history
  • Loading branch information
xyzz committed Apr 29, 2019
1 parent 5608fbc commit 47d0b4c
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions buildscripts/full-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@ set -e
ARCH=arm ./include/download-ndk.sh
ARCH=arm ./include/setup-ndk.sh

./build.sh --arch arm --lto &
PID0=$!
./build.sh --arch arm --lto

./build.sh --arch arm64 --lto --no-resources &
PID1=$!
Expand All @@ -20,4 +19,4 @@ PID2=$!
./build.sh --arch x86 --lto --no-resources &
PID3=$!

wait $PID0 $PID1 $PID2 $PID3
wait $PID1 $PID2 $PID3

0 comments on commit 47d0b4c

Please sign in to comment.