diff options
author | David Cournapeau <cournape@gmail.com> | 2011-09-08 11:31:12 -0400 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2011-09-08 11:31:12 -0400 |
commit | da2af087f11e122372d61bb00eb7fe2d91b47139 (patch) | |
tree | 811c7886f1133bb48427b2c29da977c83fd05b95 /BENTO_BUILD.txt | |
parent | c44c5325f8fcfb0ed82230ae63ea5dee62d348b0 (diff) | |
download | numpy-da2af087f11e122372d61bb00eb7fe2d91b47139.tar.gz |
DOC: update bento instructions.
Diffstat (limited to 'BENTO_BUILD.txt')
-rw-r--r-- | BENTO_BUILD.txt | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/BENTO_BUILD.txt b/BENTO_BUILD.txt new file mode 100644 index 000000000..a4c3ba35b --- /dev/null +++ b/BENTO_BUILD.txt @@ -0,0 +1,19 @@ +No-frill version: + + * Clone bento:: + + git clone git://github.com/cournape/Bento.git bento-git + + * Bootstrap bento:: + + cd bento-git && python bootstrap.py + + * Download waf from svn (svn >= r11575 is required) + * Build numpy with bento: + + export WAFDIR=ROOT_OF_WAF_SVN_TRUNK # WAFDIR should be such as $WAFDIR/waflib exists + $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 |