blob: 92aedaa6c61329f73ac561de7c8b6412c65794fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#!/bin/sh
# file : etc/bootstrap/bbot-bootstrap-macos.sh
# copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
# license : TBC; see accompanying LICENSE file
# open -a Terminal -n -F ~/bbot-bootstrap-macos.sh
if ! jobs="$(sysctl -n hw.ncpu)"; then
jobs=1
fi
# Enable core dumps (into /cores/) for postmortem debugging.
#
ulimit -c unlimited
# Note: bootstrap script options must come before build options.
#
"$(dirname "$0")/bbot-bootstrap.sh" \
--cxx clang++ \
--build /tmp \
--environments "$HOME/environments" \
"$@" \
--make make \
--make "-j$jobs"
# If success, wait a bit and shutdown. Otherwise leave the machine running
# for investigation.
#
if test "$?" -eq 0; then
sleep 5
sudo shutdown -h now
fi
|