forked from numenta/nupic-legacy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sh
executable file
·98 lines (84 loc) · 3.41 KB
/
build.sh
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
#!/usr/bin/env bash
# ----------------------------------------------------------------------
# Numenta Platform for Intelligent Computing (NuPIC)
# Copyright (C) 2013, Numenta, Inc. Unless you have purchased from
# Numenta, Inc. a separate commercial license for this software code, the
# following terms and conditions apply:
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 3 as
# published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
# See the GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see http://www.gnu.org/licenses.
#
# http://numenta.org/licenses/
# ----------------------------------------------------------------------
# Build NuPIC. This requires that the environment is set up as described in the
# README.
# Terminate on first failure.
set -e
# Set sane defaults
[[ -z $NUPIC ]] && NUPIC=$PWD
[[ -z $BUILDDIR ]] && BUILDDIR=/tmp/ntabuild
[[ -z $MK_JOBS ]] && MK_JOBS=3
if [[ ! -z $1 ]] ; then
NUPIC_INSTALL=$1
elif [[ ! -z $NTA ]] ; then
NUPIC_INSTALL=$NTA
else
NUPIC_INSTALL=$HOME/nta/eng
fi
function exitOnError {
if [[ !( "$1" == 0 ) ]] ; then
exit $1
fi
}
function prepDirectories {
[[ -d $NUPIC_INSTALL ]] && echo "Warning: directory \"$NUPIC_INSTALL\" already exists and may contain (old) data. Consider removing it. "
[[ -d $BUILDDIR ]] && echo "Warning: directory \"$BUILDDIR\" already exists and may contain (old) data. Consider removing it. "
mkdir -p "$BUILDDIR"
mkdir -p "$NUPIC_INSTALL"
pushd "$BUILDDIR"
}
# get PYTHON_VERSION early here
PY_VER=`python -c 'import platform; print platform.python_version()[:3]'`
function pythonSetup {
python "$NUPIC/build_system/setup.py" --autogen
PATH=$NUPIC_INSTALL:$PATH pip install --find-links=file://$NUPIC/external/common/pip-cache --no-index --index-url=file:///dev/null --target=$NUPIC_INSTALL/lib/python${PY_VER}/site-packages --install-option="--install-scripts=$NUPIC_INSTALL/bin" -r $NUPIC/external/common/requirements.txt
#cov-core may fail to install properly, reporting something to the effect of:
#
# Failed to write pth file for subprocess measurement to $NTA/lib/python2.6/site-packages/init_cov_core.pth
#
# Subprocesses WILL NOT have coverage collected.
#
# To measure subprocesses put the following in a pth file called init_cov_core.pth:
# import os; os.environ.get('COV_CORE_SOURCE') and __import__('cov_core_init').init()
#
#Therefore, explicitly write out the .pth file.
echo "import os; os.environ.get('COV_CORE_SOURCE') and __import__('cov_core_init').init()" > $NUPIC_INSTALL/lib/python${PY_VER}/site-packages/init_cov_core.pth
exitOnError $?
}
function doConfigure {
"$NUPIC/configure" --enable-optimization --enable-assertions=yes --prefix="$NUPIC_INSTALL"
exitOnError $?
}
function doMake {
make -j $MK_JOBS
make install
exitOnError $?
}
function cleanUpDirectories {
popd
[[ -d $BUILDDIR ]] && echo "Warning: directory \"$BUILDDIR\" already exists and may contain (old) data. Consider removing it. "
}
prepDirectories
pythonSetup
doConfigure
doMake
cleanUpDirectories