summaryrefslogtreecommitdiff
path: root/numpy/random/setup.py
diff options
context:
space:
mode:
authormattip <matti.picus@gmail.com>2019-11-11 12:48:00 -0700
committermattip <matti.picus@gmail.com>2019-11-11 12:48:00 -0700
commit4708211dc86d396f30c54bf71bc7194338272637 (patch)
tree31378f17386bf325651e93651f18d8b1c5a1c89c /numpy/random/setup.py
parentc592bf2210567ea58bc52f8e15a5f0de582f889b (diff)
downloadnumpy-4708211dc86d396f30c54bf71bc7194338272637.tar.gz
BUILD: remove SSE2 flag from numpy.random builds
Diffstat (limited to 'numpy/random/setup.py')
-rw-r--r--numpy/random/setup.py5
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')]