===================================================================
Gbp-Pq: Name 0002-Never-use-the-msse2-flag-explicitly.patch
os.remove(fd.name)
# SSE2
- if 'sse2' in cpu_flags:
+ if False and 'sse2' in cpu_flags:
print('SSE2 detected')
CFLAGS.append('-DSHUFFLE_SSE2_ENABLED')
if os.name == 'nt':
if 'sse2' in f]
# AVX2
# Detection code for AVX2 only works for gcc/clang, not for MSVC yet
- if ('avx2' in cpu_flags and
+ if (False and 'avx2' in cpu_flags and
compiler_has_flags(compiler, ["-mavx2"])):
print('AVX2 detected')
CFLAGS.append('-DSHUFFLE_AVX2_ENABLED')