From b26e9185645a4344e113a98428cd3c342d09d024 Mon Sep 17 00:00:00 2001 From: Eric Anholt Date: Wed, 27 Sep 2017 11:30:52 -0700 Subject: meson: Disable the intel overlay on non-x86 builds. It's got calls to rmb/wmb that end up not linking successfully. Signed-off-by: Eric Anholt Reviewed-by: Petri Latvala --- meson.build | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'meson.build') diff --git a/meson.build b/meson.build index 1cc501f3..7a092282 100644 --- a/meson.build +++ b/meson.build @@ -121,6 +121,8 @@ subdir('benchmarks') subdir('tools') if libdrm_intel.found() subdir('assembler') - subdir('overlay') + if ['x86', 'x86_64'].contains(host_machine.cpu_family()) + subdir('overlay') + endif endif subdir('man') -- cgit v1.2.3