diff options
| author | David Cournapeau <cournape@gmail.com> | 2008-09-05 07:00:12 +0000 |
|---|---|---|
| committer | David Cournapeau <cournape@gmail.com> | 2008-09-05 07:00:12 +0000 |
| commit | cf9b2c9480861a716dad46bb447f40fc09c87117 (patch) | |
| tree | fb4eb0ab64deac7aba4471b23d32a74ecc413d08 /numpy | |
| parent | 72a6d03b50cb35175548f70d684ae81b951af090 (diff) | |
| download | numpy-cf9b2c9480861a716dad46bb447f40fc09c87117.tar.gz | |
ldexp is a mandatory function.
Diffstat (limited to 'numpy')
| -rw-r--r-- | numpy/core/setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/setup.py b/numpy/core/setup.py index 491b51dd2..4859f1233 100644 --- a/numpy/core/setup.py +++ b/numpy/core/setup.py @@ -66,7 +66,7 @@ def check_math_capabilities(config, moredefs, mathlibs): # Mandatory functions: if not found, fail the build mandatory_funcs = ["sin", "cos", "tan", "sinh", "cosh", "tanh", "fabs", "floor", "ceil", "sqrt", "log10", "log", "exp", "asin", - "acos", "atan", "fmod", 'modf', 'frexp'] + "acos", "atan", "fmod", 'modf', 'frexp', 'ldexp'] if not check_funcs_once(mandatory_funcs): raise SystemError("One of the required function to build numpy is not" |
