aboutsummaryrefslogtreecommitdiffstats
path: root/configure.py
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2017-01-27 20:44:25 -0500
committerJack Lloyd <[email protected]>2017-01-29 17:32:47 -0500
commit2b848242fe4f6c7023e86d7e916c73af30fb9cf0 (patch)
treeab138d0a73230de92d123a0afce38c7e04453395 /configure.py
parent3cf1917b4e0ab45f853f1fe7cb7faed342987dd9 (diff)
Add support for NEON in SIMD_4x32
Tested on qemu-aarch64
Diffstat (limited to 'configure.py')
-rwxr-xr-xconfigure.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.py b/configure.py
index 2a3be5ce5..83fe6b053 100755
--- a/configure.py
+++ b/configure.py
@@ -261,7 +261,7 @@ def process_command_line(args):
target_group.add_option('--without-os-features', action='append', metavar='FEAT',
help='specify OS features to disable')
- for isa_extn_name in ['SSE2', 'SSSE3', 'AVX2', 'AES-NI', 'AltiVec']:
+ for isa_extn_name in ['SSE2', 'SSSE3', 'AVX2', 'AES-NI', 'AltiVec', 'NEON']:
isa_extn = isa_extn_name.lower()
target_group.add_option('--disable-%s' % (isa_extn),
@@ -1349,7 +1349,7 @@ def gen_makefile_lists(var, build_config, options, modules, cc, arch, osinfo):
def simd_dependencies():
- for simd32_impl in ['sse2', 'altivec']:
+ for simd32_impl in ['sse2', 'altivec', 'neon']:
if simd32_impl in arch.isa_extensions and cc.isa_flags_for(simd32_impl, arch.basename) is not None:
return [simd32_impl]