diff options
author | Hood Chatham <roberthoodchatham@gmail.com> | 2022-06-11 13:09:40 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-11 13:09:40 -0700 |
commit | 952058e96d093ac76ceaff1356519ce1f89c53f0 (patch) | |
tree | 44b60115103c269bbe72ae0dac052cf8611de93c /numpy | |
parent | ded461bf6de57c29495572e3c8bae4efd615a035 (diff) | |
download | numpy-952058e96d093ac76ceaff1356519ce1f89c53f0.tar.gz |
Update numpy/linalg/setup.py
Co-authored-by: Sebastian Berg <sebastian@sipsolutions.net>
Diffstat (limited to 'numpy')
-rw-r--r-- | numpy/linalg/setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/linalg/setup.py b/numpy/linalg/setup.py index 4643d8a30..b11268f10 100644 --- a/numpy/linalg/setup.py +++ b/numpy/linalg/setup.py @@ -39,7 +39,7 @@ def configuration(parent_package='', top_path=None): class numpy_linalg_lapack_lite(system_info): def calc_info(self): info = {'language': 'c'} - if sysconfig.get_config_var("SIZEOF_VOID_P") > 4: + if sysconfig.get_config_var("SIZEOF_SIZE_T") >= 8: # Build lapack-lite in 64-bit integer mode. # The suffix is arbitrary (lapack_lite symbols follow it), # but use the "64_" convention here. |