summaryrefslogtreecommitdiff
path: root/numpy/core/setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/core/setup.py')
-rw-r--r--numpy/core/setup.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/numpy/core/setup.py b/numpy/core/setup.py
index 10b8c093e..6f0a4417a 100644
--- a/numpy/core/setup.py
+++ b/numpy/core/setup.py
@@ -45,6 +45,8 @@ NPY_DISABLE_SVML = (os.environ.get('NPY_DISABLE_SVML', "0") == "1")
# in time is only in build. -- Charles Harris, 2013-03-30
class CallOnceOnly:
+ # NOTE: we don't need any of this in the Meson build,
+ # it takes care of caching
def __init__(self):
self._check_types = None
self._check_ieee_macros = None
@@ -177,6 +179,8 @@ def check_math_capabilities(config, ext, moredefs, mathlibs):
else:
return 1
+ # NOTE: not needed in Meson build, we set the minimum
+ # compiler version to 8.4 to avoid this bug
# GH-14787: Work around GCC<8.4 bug when compiling with AVX512
# support on Windows-based platforms
def check_gh14787(fn):
@@ -427,6 +431,8 @@ def check_types(config_cmd, ext, build_dir):
return private_defines, public_defines
+# NOTE: this isn't needed in the Meson build,
+# and we won't support a MATHLIB env var
def check_mathlib(config_cmd):
# Testing the C math library
mathlibs = []