mirror of
https://github.com/liberatedsystems/openCom-Companion.git
synced 2024-11-22 05:20:36 +01:00
21 lines
723 B
Diff
21 lines
723 B
Diff
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
|