summaryrefslogtreecommitdiff
path: root/numpy/core/setup_common.py
diff options
context:
space:
mode:
authormattip <matti.picus@gmail.com>2022-10-20 17:56:10 +0300
committermattip <matti.picus@gmail.com>2022-10-20 17:56:10 +0300
commit9bde3880d7de3db54e44f29071462bf2dbbee1e7 (patch)
treedf519fe1cdf08c8f674e7e040bf975bc824f5592 /numpy/core/setup_common.py
parent7dd4684ac9fe0917690f12397a74106f72e66eee (diff)
downloadnumpy-9bde3880d7de3db54e44f29071462bf2dbbee1e7.tar.gz
MAINT: refactor mandatory npymath functions to #define macros
Diffstat (limited to 'numpy/core/setup_common.py')
-rw-r--r--numpy/core/setup_common.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/numpy/core/setup_common.py b/numpy/core/setup_common.py
index 55daa8648..085c0baf5 100644
--- a/numpy/core/setup_common.py
+++ b/numpy/core/setup_common.py
@@ -122,6 +122,8 @@ for file in [
set_sig(line)
# Mandatory functions: if not found, fail the build
+# Some of these can still be blocklisted if the C99 implementation
+# is buggy, see numpy/core/src/common/npy_config.h
MANDATORY_FUNCS = [
"sin", "cos", "tan", "sinh", "cosh", "tanh", "fabs",
"floor", "ceil", "sqrt", "log10", "log", "exp", "asin",