From: Nicolai Hähnle Date: Wed, 5 Dec 2018 12:28:03 +0000 (+0100) Subject: meson: link LLVM 'native' component when LLVM is available X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4275cae95c8cb217d6164dfeeafae7b56484b13d;p=mesa.git meson: link LLVM 'native' component when LLVM is available Linking against LLVM built with BUILD_SHARED_LIBS fails otherwise, as the component is required for the draw module. Reviewed-by: Dylan Baker --- diff --git a/meson.build b/meson.build index 9ea31ab3ae9..4f6176b8d96 100644 --- a/meson.build +++ b/meson.build @@ -1162,7 +1162,7 @@ endif llvm_modules = ['bitwriter', 'engine', 'mcdisassembler', 'mcjit'] llvm_optional_modules = [] if with_amd_vk or with_gallium_radeonsi or with_gallium_r600 - llvm_modules += ['amdgpu', 'bitreader', 'ipo'] + llvm_modules += ['amdgpu', 'native', 'bitreader', 'ipo'] if with_gallium_r600 llvm_modules += 'asmparser' endif