From: Romain Naour Date: Sat, 28 Apr 2018 17:28:02 +0000 (+0200) Subject: package/mesa3d: RadeonSI needs llvm support X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=77a110aa1c22afc88106a753005fb068848419a1;p=buildroot.git package/mesa3d: RadeonSI needs llvm support Fixes: checking for AMDGPU... yes configure: error: --enable-llvm is required when building radeonsi Signed-off-by: Romain Naour Cc: MichaƂ Kalbarczyk Signed-off-by: Thomas Petazzoni --- diff --git a/package/mesa3d/Config.in b/package/mesa3d/Config.in index 32337a36a4..d620c0ab52 100644 --- a/package/mesa3d/Config.in +++ b/package/mesa3d/Config.in @@ -117,21 +117,20 @@ comment "R600 driver needs a uClibc or glibc toolchain when llvm is enabled" config BR2_PACKAGE_MESA3D_GALLIUM_DRIVER_RADEONSI bool "Gallium Radeon SI driver" depends on BR2_i386 || BR2_x86_64 - depends on !BR2_PACKAGE_MESA3D_LLVM || \ - (BR2_PACKAGE_MESA3D_LLVM && (BR2_TOOLCHAIN_USES_UCLIBC || \ - BR2_TOOLCHAIN_USES_GLIBC)) # elfutils + depends on BR2_PACKAGE_MESA3D_LLVM + depends on BR2_TOOLCHAIN_USES_UCLIBC || BR2_TOOLCHAIN_USES_GLIBC # elfutils select BR2_PACKAGE_MESA3D_GALLIUM_DRIVER select BR2_PACKAGE_LIBDRM_AMDGPU select BR2_PACKAGE_LIBDRM_RADEON - select BR2_PACKAGE_LLVM_AMDGPU if BR2_PACKAGE_MESA3D_LLVM - select BR2_PACKAGE_ELFUTILS if BR2_PACKAGE_MESA3D_LLVM + select BR2_PACKAGE_LLVM_AMDGPU + select BR2_PACKAGE_ELFUTILS select BR2_PACKAGE_MESA3D_NEEDS_XA help Driver for ATI/AMD Radeon HD7000/HD8000/Rx200 GPUs. -# Radeon SI needs libelf when Mesa3D is built with LLVM support +# Radeon SI needs libelf # musl is not currently compatible with elfutils -comment "Radeon SI driver needs a uClibc or glibc toolchain when llvm is enabled" +comment "Radeon SI driver needs a uClibc or glibc toolchain" depends on BR2_PACKAGE_MESA3D_LLVM depends on !(BR2_TOOLCHAIN_USES_UCLIBC || BR2_TOOLCHAIN_USES_GLIBC)