Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/videolan/dav1d.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJanne Grunau <janne-vlc@jannau.net>2018-11-14 17:52:40 +0300
committerMarvin Scholz <epirat07@gmail.com>2018-11-14 23:50:29 +0300
commita6b94ca9e5cded0070419a02d9cadaa5f45b2d0d (patch)
tree43b788b686ac0580e75d32e084121c6ff40a69dd
parent949853f2d97fe8e8dd47e232e7e372f6573f8140 (diff)
meson: fix disabling asm for arm/arm64
-rw-r--r--meson.build6
1 files changed, 3 insertions, 3 deletions
diff --git a/meson.build b/meson.build
index e7ce89e..880fbdc 100644
--- a/meson.build
+++ b/meson.build
@@ -61,9 +61,9 @@ endforeach
# ASM option
is_asm_enabled = (get_option('build_asm') == true and
- (host_machine.cpu_family().startswith('x86')) or
- host_machine.cpu_family() == 'aarch64' or
- host_machine.cpu_family().startswith('arm'))
+ (host_machine.cpu_family().startswith('x86') or
+ host_machine.cpu_family() == 'aarch64' or
+ host_machine.cpu_family().startswith('arm')))
cdata.set10('HAVE_ASM', is_asm_enabled)
if is_asm_enabled and get_option('b_sanitize') == 'memory'