diff options
author | Ralf Gommers <ralf.gommers@googlemail.com> | 2013-09-28 06:45:07 -0700 |
---|---|---|
committer | Ralf Gommers <ralf.gommers@googlemail.com> | 2013-09-28 06:45:07 -0700 |
commit | 02e85a520edbf79d5bf8390c4375a1795d0af9dd (patch) | |
tree | 4449adcbcf64da2ae28611f384eae4e15f24f49c /numpy | |
parent | 24df94cff2373b07d06990cdf6a2c804506c0a39 (diff) | |
parent | 72accd264437e00b733bc3e3cd31827cfbb14f3b (diff) | |
download | numpy-02e85a520edbf79d5bf8390c4375a1795d0af9dd.tar.gz |
Merge pull request #3818 from lxbarth/master
BUG: fix platform detection for intel platforms
Diffstat (limited to 'numpy')
-rw-r--r-- | numpy/distutils/system_info.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/numpy/distutils/system_info.py b/numpy/distutils/system_info.py index d9196ea5c..3c281465d 100644 --- a/numpy/distutils/system_info.py +++ b/numpy/distutils/system_info.py @@ -1386,6 +1386,7 @@ class lapack_opt_info(system_info): args = [] link_args = [] if get_platform()[-4:] == 'i386' or 'intel' in get_platform() or \ + 'x86_64' in get_platform() or \ 'i386' in platform.platform(): intel = 1 else: @@ -1482,6 +1483,7 @@ class blas_opt_info(system_info): args = [] link_args = [] if get_platform()[-4:] == 'i386' or 'intel' in get_platform() or \ + 'x86_64' in get_platform() or \ 'i386' in platform.platform(): intel = 1 else: |