diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2017-10-20 13:31:52 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2017-10-20 13:31:52 +0200 |
commit | 1fcd5d1067254c40921df17b8de906c81934077a (patch) | |
tree | 71dc34b096c6ee9544d8e99c6240b7fbf4d3078d /etc/bootstrap/bbot-bootstrap-freebsd.sh | |
parent | 3ddab9d7360213cda421ac25f62cbf7ef92b513b (diff) |
Add support for parallel bootstrap on Linux, Mac OS, and FreeBSD
Diffstat (limited to 'etc/bootstrap/bbot-bootstrap-freebsd.sh')
-rwxr-xr-x | etc/bootstrap/bbot-bootstrap-freebsd.sh | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/etc/bootstrap/bbot-bootstrap-freebsd.sh b/etc/bootstrap/bbot-bootstrap-freebsd.sh new file mode 100755 index 0000000..8a86696 --- /dev/null +++ b/etc/bootstrap/bbot-bootstrap-freebsd.sh @@ -0,0 +1,17 @@ +#!/bin/sh + +# file : etc/bootstrap/bbot-bootstrap-freebsd.sh +# copyright : Copyright (c) 2014-2017 Code Synthesis Ltd +# license : TBC; see accompanying LICENSE file + +# Note: install GNU make with 'pkg install gmake'. +# + +if ! jobs="$(sysctl -n hw.ncpu)"; then + jobs=1 +fi + +"$(dirname "$0")/bbot-bootstrap.sh" \ + --make gmake \ + --make "-j$jobs" \ + "$@" |