summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.com>2023-04-20 19:06:13 +0100
committerTristan Matthews <tmatth@videolan.org>2023-04-26 12:42:03 +0000
commit20c032d27c59d65b19b8ffbb2608e5282fe817eb (patch)
tree5f764260c2fd14f950946498dee162f11a42abeb
parentf3de7ca74358eff2aec766b076ded84f463ac606 (diff)
downloadopus-20c032d27c59d65b19b8ffbb2608e5282fe817eb.tar.gz
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.
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index ed66d380..9f28de33 100644
--- a/meson.build
+++ b/meson.build
@@ -574,8 +574,8 @@ foreach l : lines
endforeach
subdir('include')
-subdir('silk')
subdir('celt')
+subdir('silk')
subdir('src')
configure_file(output: 'config.h', configuration: opus_conf)