From 9bf3ae655b4cb7a3a91a9c77e006ec72864a6e1a Mon Sep 17 00:00:00 2001 From: George Kiagiadakis Date: Mon, 24 Jun 2019 12:19:20 +0300 Subject: [PATCH] arm: build with -mno-unaligned-access Upstream-Status: Inappropriate [workaround] See also https://github.com/PipeWire/pipewire/issues/161 --- meson.build | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/meson.build b/meson.build index 74455378..c0bb7470 100644 --- a/meson.build +++ b/meson.build @@ -52,6 +52,11 @@ if cc.get_id() == 'gcc' language : 'c') endif +if host_machine.cpu_family() == 'arm' + add_global_arguments('-mno-unaligned-access', + language: 'c') +endif + sse_args = '-msse' sse2_args = '-msse2' ssse3_args = '-mssse3' -- 2.23.0