shithub: opus

Download patch

ref: 20c032d27c59d65b19b8ffbb2608e5282fe817eb
parent: f3de7ca74358eff2aec766b076ded84f463ac606
author: Tim-Philipp Müller <tim@centricular.com>
date: Thu Apr 20 15:06:13 EDT 2023

meson: fix build on arm64

Would fail like:

Checking if "compiler supports ARMv7/AArch64 NEON intrinsics" : links: NO
Checking if "compiler supports ARMv7/AArch64 NEON intrinsics with -mfpu=neon" : links: YES
Checking if "compiler supports AArch64 NEON intrinsics" : links: NO
Checking if "compiler supports AArch64 NEON intrinsics with -mfpu=neon" : links: NO
Message: Compiler does not support AArch64 NEON intrinsics
../silk/meson.build:28:45: ERROR: Unknown variable "have_arm_intrinsics_or_asm".

since commit 08088411259056f63774befb2d00951fdd5c46ba.

--- a/meson.build
+++ b/meson.build
@@ -574,8 +574,8 @@
 endforeach
 
 subdir('include')
-subdir('silk')
 subdir('celt')
+subdir('silk')
 subdir('src')
 
 configure_file(output: 'config.h', configuration: opus_conf)