From d9f15f8d9ba5f920b77132e5b688f1f08cf8db04 Mon Sep 17 00:00:00 2001 From: Pierre-Eric Pelloux-Prayer Date: Fri, 26 Jan 2024 15:09:18 +0100 Subject: [PATCH] meson: require libelf when radeonsi is built MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit radeonsi has a hard dependency on libelf so tell meson about this requirement. Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/10240 Reviewed-by: Marek Olšák Part-of: --- meson.build | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meson.build b/meson.build index 28c723410e1..1d7439d9c63 100644 --- a/meson.build +++ b/meson.build @@ -1884,6 +1884,8 @@ if not with_platform_windows and not dep_elf.found() endif if dep_elf.found() pre_args += '-DUSE_LIBELF' +elif with_gallium_radeonsi + error('Gallium driver radeonsi requires libelf') endif dep_glvnd = null_dep