chromium: fix launcher for halibut
[AGL/meta-agl-devel.git] / meta-pipewire / recipes-multimedia / pipewire / pipewire / 0004-arm-build-with-mno-unaligned-access.patch
1 From 4e1c70e9b4e8f3ece722f82d49b283a0c6ef0130 Mon Sep 17 00:00:00 2001
2 From: George Kiagiadakis <george.kiagiadakis@collabora.com>
3 Date: Mon, 24 Jun 2019 12:19:20 +0300
4 Subject: [PATCH] arm: build with -mno-unaligned-access
5
6 ---
7  meson.build | 5 +++++
8  1 file changed, 5 insertions(+)
9
10 diff --git a/meson.build b/meson.build
11 index 81303d27..f3cc6030 100644
12 --- a/meson.build
13 +++ b/meson.build
14 @@ -50,6 +50,11 @@ if cc.get_id() == 'gcc'
15                         language : 'c')
16  endif
17  
18 +if host_machine.cpu_family() == 'arm'
19 +  add_global_arguments('-mno-unaligned-access',
20 +    language: 'c')
21 +endif
22 +
23  sse_args = '-msse'
24  sse2_args = '-msse2'
25  ssse3_args = '-mssse3'
26 -- 
27 2.20.1
28