Closed snim2 closed 9 years ago
The current scripts/build.py builds each target in turn. This PR makes use of multiprocessing to build all targets in parallel. This is faster, but it has the disadvantage that output is interleaved and therefore harder to read.
scripts/build.py
multiprocessing
Note that I disabled parallel builds unless explicitly using ./build.py -j or ./build.py -jN.
./build.py -j
./build.py -jN
The current
scripts/build.py
builds each target in turn. This PR makes use ofmultiprocessing
to build all targets in parallel. This is faster, but it has the disadvantage that output is interleaved and therefore harder to read.