diff options
author | David Cournapeau <cournape@gmail.com> | 2012-08-26 08:55:00 +0200 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2012-09-06 11:17:40 +0100 |
commit | 2d48841465749f36f3b7129266630d1bd99676fa (patch) | |
tree | dfbe8b7c42bc8d76758c10f123846a08558215ee /numpy | |
parent | cdd8095b7d27c57111de60acb240e012ffa5eace (diff) | |
download | numpy-2d48841465749f36f3b7129266630d1bd99676fa.tar.gz |
BUG: forgot to build _dotblas in bento build.
Diffstat (limited to 'numpy')
-rw-r--r-- | numpy/core/bento.info | 3 | ||||
-rw-r--r-- | numpy/core/bscript | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/numpy/core/bento.info b/numpy/core/bento.info index bf8ae3a81..0119bb68c 100644 --- a/numpy/core/bento.info +++ b/numpy/core/bento.info @@ -28,3 +28,6 @@ Library: Extension: scalarmath Sources: src/scalarmathmodule.c.src + Extension: _dotblas + Sources: + blasdot/_dotblas.c diff --git a/numpy/core/bscript b/numpy/core/bscript index 1ded8eff3..f56d9cad2 100644 --- a/numpy/core/bscript +++ b/numpy/core/bscript @@ -507,5 +507,5 @@ def pre_build(context): def build_dotblas(extension): if bld.env.HAS_CBLAS: - return context.default_builder(extension, use="CBLAS") + return context.default_builder(extension, use="CBLAS", includes=["src/private"]) context.register_builder("_dotblas", build_dotblas) |