diff options
author | Jan Palus <jpalus@fastmail.com> | 2022-05-21 14:10:48 +0200 |
---|---|---|
committer | Jan Palus <jpalus@fastmail.com> | 2022-05-21 14:10:48 +0200 |
commit | ca1186946d3c9d08229c02cc7a46c3caf766ca2e (patch) | |
tree | abac4f64442ab6e41f4e328328b5e67886c32a60 /meson.build | |
parent | 26f449340548334c4937fc13cf603b970f14864e (diff) | |
download | webrtc-audio-processing-master.tar.gz |
it will try to add -mfpu=neon to cflags not available on aarch64 since
neon is mandatory there
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build index b8b3e25..54bb16f 100644 --- a/meson.build +++ b/meson.build @@ -192,7 +192,7 @@ if ['x86', 'x86_64'].contains(host_machine.cpu_family()) endif neon_opt = get_option('neon') -if neon_opt != 'no' +if neon_opt != 'no' and not have_neon if neon_opt != 'runtime' if cc.compiles('#include <arm_neon.h>', args : '-mfpu=neon') arch_cflags += ['-mfpu=neon', '-DWEBRTC_HAS_NEON'] |