projects
/
platform
/
upstream
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
48f64e5
)
meson: Fix LLVM requires for radeonsi
author
Dylan Baker
<dylan@pnwbakers.com>
Tue, 21 Nov 2017 00:26:06 +0000
(16:26 -0800)
committer
Dylan Baker
<dylan@pnwbakers.com>
Wed, 22 Nov 2017 20:47:43 +0000
(12:47 -0800)
Signed-off-by: Dylan Baker <dylanx.c.baker@intel.com>
Reviewed-by: Eric Engestrom <eric.engestrom@imgtec.com>
meson.build
patch
|
blob
|
history
diff --git
a/meson.build
b/meson.build
index
cfe4afa
..
cba0868
100644
(file)
--- 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'