diff options
| author | Russ Cox <rsc@swtch.com> | 2018-11-16 00:01:10 -0500 |
|---|---|---|
| committer | Russ Cox <rsc@swtch.com> | 2018-11-16 00:03:24 -0500 |
| commit | ad2d49503b1242be501ab92832400ef344a6afae (patch) | |
| tree | 570718abece3a6e14dee4907f484280c0d6d7166 /INSTALL | |
| parent | 16d00819899260085ee10949012b07bf1c203db6 (diff) | |
INSTALL: set $NPROC on macOS
My MacBook Pro has hw.ncpu=12, so set NPROC=12.
Speeds up INSTALL dramatically.
Should probably add similar code to other OSes.
Also silence rio warning from earlier commit.
Diffstat (limited to 'INSTALL')
| -rwxr-xr-x | INSTALL | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -104,6 +104,7 @@ if [ `uname` = SunOS ]; then fi if [ `uname` = Darwin ]; then + export NPROC=$(sysctl hw.ncpu | sed 's/hw.ncpu: //') # On Darwin, uname -m -p cannot be trusted. echo "* Running on Darwin: checking architecture..." rm -f ./a.out |