diff options
author | mattip <matti.picus@gmail.com> | 2022-10-20 17:56:10 +0300 |
---|---|---|
committer | mattip <matti.picus@gmail.com> | 2022-10-20 17:56:10 +0300 |
commit | 9bde3880d7de3db54e44f29071462bf2dbbee1e7 (patch) | |
tree | df519fe1cdf08c8f674e7e040bf975bc824f5592 /numpy/core/setup_common.py | |
parent | 7dd4684ac9fe0917690f12397a74106f72e66eee (diff) | |
download | numpy-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.py | 2 |
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", |