summaryrefslogtreecommitdiff
path: root/meson.build
diff options
context:
space:
mode:
authorAdam Jackson <ajax@redhat.com>2019-09-06 09:50:32 +0200
committerAdam Jackson <ajax@nwnk.net>2019-09-11 17:00:43 +0000
commit96b592696f13be09621bc50be31a89fde54b18e2 (patch)
treea935e5c82f0644bbaaa3b3bdcf0e19611fd2c866 /meson.build
parent585d0956108b82514b3cb842642f8a3f23301ca1 (diff)
gallium: Require LLVM >= 3.9
To go any further than this would be to break the current version of Android. Reviewed-by: Timothy Arceri <tarceri@itsqueeze.com> Reviewed-by: Jose Fonseca <jfonseca@vmware.com>
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build4
1 files changed, 1 insertions, 3 deletions
diff --git a/meson.build b/meson.build
index 400427ee554..b8c19999f01 100644
--- a/meson.build
+++ b/meson.build
@@ -1261,10 +1261,8 @@ if with_amd_vk or with_gallium_radeonsi
_llvm_version = '>= 8.0.0'
elif with_gallium_swr
_llvm_version = '>= 6.0.0'
-elif with_gallium_opencl or with_gallium_r600
- _llvm_version = '>= 3.9.0'
else
- _llvm_version = '>= 3.8.0'
+ _llvm_version = '>= 3.9.0'
endif
_shared_llvm = get_option('shared-llvm')