shithub: dav1d

Download patch

ref: a6b94ca9e5cded0070419a02d9cadaa5f45b2d0d
parent: 949853f2d97fe8e8dd47e232e7e372f6573f8140
author: Janne Grunau <janne-vlc@jannau.net>
date: Wed Nov 14 10:52:40 EST 2018

meson: fix disabling asm for arm/arm64

--- a/meson.build
+++ b/meson.build
@@ -61,9 +61,9 @@
 
 # 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'