diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2015-08-29 09:23:52 -0600 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2015-08-29 10:04:44 -0600 |
commit | aa86ff47eeae89e91e7b679e9e50b500b961c584 (patch) | |
tree | dfbcd14d8f349071f0be4ce133623f23f2e0a381 /numpy/linalg/bscript | |
parent | 7001d613aaa445ff650a273ec3d4db6787daf2e3 (diff) | |
download | numpy-aa86ff47eeae89e91e7b679e9e50b500b961c584.tar.gz |
MAINT: Remove bento related files.
Numpy will no longer support the bento build system, so remove the
associated files.
Diffstat (limited to 'numpy/linalg/bscript')
-rw-r--r-- | numpy/linalg/bscript | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/numpy/linalg/bscript b/numpy/linalg/bscript deleted file mode 100644 index 70fdd9de3..000000000 --- a/numpy/linalg/bscript +++ /dev/null @@ -1,26 +0,0 @@ -from bento.commands.hooks \ - import \ - pre_build - -@pre_build -def pbuild(context): - bld = context.waf_context - - def build_lapack_lite(extension): - kw = {} - kw["use"] = "npymath" - if bld.env.HAS_LAPACK: - for s in ['python_xerbla.c', 'zlapack_lite.c', 'dlapack_lite.c', - 'blas_lite.c', 'dlamch.c', 'f2c_lite.c']: - extension.sources.pop(extension.sources.index('lapack_lite/' + s)) - kw["use"] = "npymath LAPACK" - - includes = ["../core/include", "../core/include/numpy", "../core", - "../core/src/private"] - return context.default_builder(extension, - includes=includes, - **kw) - - context.register_builder("lapack_lite", build_lapack_lite) - context.register_builder("_umath_linalg", build_lapack_lite) - |