forked from scipy/scipy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BENTO_BUILD.txt
30 lines (19 loc) · 848 Bytes
/
BENTO_BUILD.txt
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
No-frill version:
* Clone bento::
$ git clone git://github.com/cournape/Bento.git bento
* Bootstrap bento::
$ cd bento && python bootstrap.py
* Clone Waf::
$ git clone https://code.google.com/p/waf/
* Set the WAFDIR environment variable to the base dir of the waf repo you
just created (in your bash_login for example if you're going to build with
Bento often). This is unfortunately needed, Waf is not installable like a
regular Python package::
$ export WAFDIR=ROOT_OF_WAF_REPO
# WAFDIR should be such as $WAFDIR/waflib exists
* Build scipy with Bento::
$ BENTO_ROOT/bentomaker build -j 4 # 4 threads in parallel
# or with progress bar
$ BENTO_ROOT/bentomaker build -p
# or with verbose output
$ BENTO_ROOT/bentomaker build -v