From: Dylan Baker Date: Tue, 21 Nov 2017 00:26:06 +0000 (-0800) Subject: meson: Fix LLVM requires for radeonsi X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2d1a3bf657281509b3f602f71c9d9821b72675e4;p=mesa.git meson: Fix LLVM requires for radeonsi Signed-off-by: Dylan Baker Reviewed-by: Eric Engestrom --- diff --git a/meson.build b/meson.build index cfe4afa550d..cba08682bc5 100644 --- a/meson.build +++ b/meson.build @@ -718,7 +718,7 @@ if with_gallium_freedreno endif llvm_modules = ['bitwriter', 'engine', 'mcdisassembler', 'mcjit'] -if with_amd_vk +if with_amd_vk or with_gallium_radeonsi llvm_modules += ['amdgpu', 'bitreader', 'ipo'] endif @@ -726,7 +726,7 @@ _llvm = get_option('llvm') if _llvm == 'auto' dep_llvm = dependency( 'llvm', version : '>= 3.9.0', modules : llvm_modules, - required : with_amd_vk, + required : with_amd_vk or with_gallium_radeonsi, ) with_llvm = dep_llvm.found() elif _llvm == 'true'