summaryrefslogtreecommitdiff
path: root/numpy
diff options
context:
space:
mode:
authorHood Chatham <roberthoodchatham@gmail.com>2022-06-11 12:19:42 -0700
committerHood Chatham <roberthoodchatham@gmail.com>2022-06-11 12:19:46 -0700
commitded461bf6de57c29495572e3c8bae4efd615a035 (patch)
treeef14ffcfc113a201a3bf6acd28a3e590a921d3b6 /numpy
parent4cb688938be2ff20bf939c3917fde2f7634f0500 (diff)
downloadnumpy-ded461bf6de57c29495572e3c8bae4efd615a035.tar.gz
ENH: Fix pointer size determination for cross build
Using `sys` to ask about the build Python is hostile to cross building because it is very hard to replace the sys module with one that gives info about the target system. On the other hand, the sysconfig data can be replaced by setting _PYTHON_SYSCONFIGDATA_NAME. So instead of using `sys.maxsize` to determine pointer size, use `sysconfig.get_config_var("SIZEOF_VOID_P")`
Diffstat (limited to 'numpy')
-rw-r--r--numpy/linalg/setup.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/numpy/linalg/setup.py b/numpy/linalg/setup.py
index dc62dff8f..4643d8a30 100644
--- a/numpy/linalg/setup.py
+++ b/numpy/linalg/setup.py
@@ -1,5 +1,6 @@
import os
import sys
+import sysconfig
def configuration(parent_package='', top_path=None):
from numpy.distutils.misc_util import Configuration
@@ -38,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 sys.maxsize > 2**32:
+ if sysconfig.get_config_var("SIZEOF_VOID_P") > 4:
# Build lapack-lite in 64-bit integer mode.
# The suffix is arbitrary (lapack_lite symbols follow it),
# but use the "64_" convention here.