mirror of
https://github.com/markqvist/Sideband.git
synced 2025-05-07 17:04:58 -04:00
Updated recipes
This commit is contained in:
parent
c83798b123
commit
e90133a90f
6 changed files with 136 additions and 2 deletions
20
recipes/numpy/patches/add_libm_explicitly_to_build.patch
Normal file
20
recipes/numpy/patches/add_libm_explicitly_to_build.patch
Normal file
|
@ -0,0 +1,20 @@
|
|||
diff --git a/numpy/linalg/setup.py b/numpy/linalg/setup.py
|
||||
index 66c07c9..d34bd93 100644
|
||||
--- a/numpy/linalg/setup.py
|
||||
+++ b/numpy/linalg/setup.py
|
||||
@@ -46,6 +46,7 @@ def configuration(parent_package='', top_path=None):
|
||||
sources=['lapack_litemodule.c', get_lapack_lite_sources],
|
||||
depends=['lapack_lite/f2c.h'],
|
||||
extra_info=lapack_info,
|
||||
+ libraries=['m'],
|
||||
)
|
||||
|
||||
# umath_linalg module
|
||||
@@ -54,7 +54,7 @@ def configuration(parent_package='', top_path=None):
|
||||
sources=['umath_linalg.c.src', get_lapack_lite_sources],
|
||||
depends=['lapack_lite/f2c.h'],
|
||||
extra_info=lapack_info,
|
||||
- libraries=['npymath'],
|
||||
+ libraries=['npymath', 'm'],
|
||||
)
|
||||
return config
|
Loading…
Add table
Add a link
Reference in a new issue