diff options
author | Warren Weckesser <warren.weckesser@gmail.com> | 2019-11-14 10:02:29 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-14 10:02:29 -0500 |
commit | 1ebf711fcd293725f061bf49af8357640c0b8349 (patch) | |
tree | 9eb7f7698afdd76c48e10020ac21b3678aa8f576 /numpy/random | |
parent | d1d9dd58e2de5f3b69c02b104e1daaeec1f38d9f (diff) | |
parent | 4708211dc86d396f30c54bf71bc7194338272637 (diff) | |
download | numpy-1ebf711fcd293725f061bf49af8357640c0b8349.tar.gz |
Merge pull request #14878 from mattip/remove-sse2
BUILD: remove SSE2 flag from numpy.random builds
Diffstat (limited to 'numpy/random')
-rw-r--r-- | numpy/random/setup.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/numpy/random/setup.py b/numpy/random/setup.py index ca01250f4..f9059d7d7 100644 --- a/numpy/random/setup.py +++ b/numpy/random/setup.py @@ -47,11 +47,6 @@ def configuration(parent_package='', top_path=None): elif not is_msvc: # Some bit generators require c99 EXTRA_COMPILE_ARGS += ['-std=c99'] - INTEL_LIKE = any(arch in platform.machine() - for arch in ('x86', 'i686', 'i386', 'amd64')) - if INTEL_LIKE: - # Assumes GCC or GCC-like compiler - EXTRA_COMPILE_ARGS += ['-msse2'] # Use legacy integer variable sizes LEGACY_DEFS = [('NP_RANDOM_LEGACY', '1')] |