mirror of https://github.com/pyodide/pyodide.git
Merge pull request #120 from mdboom/numpy-use-local-blas-and-lapack
Fix #115: Forcibly use the local copy of blas and lapack
This commit is contained in:
commit
ae15fa88c0
|
@ -17,6 +17,7 @@ source:
|
||||||
- patches/init-alloc-cache.patch
|
- patches/init-alloc-cache.patch
|
||||||
- patches/pass-along-errors-from-init.patch
|
- patches/pass-along-errors-from-init.patch
|
||||||
- patches/use-dummy-threading.patch
|
- patches/use-dummy-threading.patch
|
||||||
|
- patches/use-local-blas-lapack.patch
|
||||||
|
|
||||||
build:
|
build:
|
||||||
cflags: -include math.h -I../../config
|
cflags: -include math.h -I../../config
|
||||||
|
|
|
@ -0,0 +1,17 @@
|
||||||
|
diff --git a/numpy/distutils/system_info.py b/numpy/distutils/system_info.py
|
||||||
|
old mode 100644
|
||||||
|
new mode 100755
|
||||||
|
index bea120cf9..5b2ccb2c1
|
||||||
|
--- a/numpy/distutils/system_info.py
|
||||||
|
+++ b/numpy/distutils/system_info.py
|
||||||
|
@@ -406,8 +406,8 @@ def get_info(name, notfound_action=0):
|
||||||
|
'numeric': Numeric_info,
|
||||||
|
'numarray': numarray_info,
|
||||||
|
'numerix': numerix_info,
|
||||||
|
- 'lapack_opt': lapack_opt_info,
|
||||||
|
- 'blas_opt': blas_opt_info,
|
||||||
|
+ 'lapack_opt': lapack_src_info,
|
||||||
|
+ 'blas_opt': blas_src_info,
|
||||||
|
'boost_python': boost_python_info,
|
||||||
|
'agg2': agg2_info,
|
||||||
|
'wx': wx_info,
|
Loading…
Reference in New Issue