summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--numpy/core/setup.py2
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"