Add x86_64 to architectures supporting SSE3

This commit is contained in:
simondlevy
2018-08-03 14:30:59 -04:00
parent abb0733d8d
commit 1b121d6246

View File

@@ -28,8 +28,11 @@ SIMD_FLAGS = []
arch = machine() arch = machine()
if arch == 'i686': print(arch)
if arch in ['i686', 'x86_64']:
SIMD_FLAGS = ['-msse3'] SIMD_FLAGS = ['-msse3']
arch = 'i686'
elif arch == 'armv7l': elif arch == 'armv7l':
OPT_FLAGS = ['-O3'] OPT_FLAGS = ['-O3']