diff options
author | Adam Jackson <[email protected]> | 2019-09-06 09:50:16 +0200 |
---|---|---|
committer | Adam Jackson <[email protected]> | 2019-09-11 17:00:43 +0000 |
commit | 9abf7d575597e9dc534cccbb973f9e98338f48fe (patch) | |
tree | 2d00484b7a3aa018b71b29488ebe6ad98588ecb9 /meson.build | |
parent | 3c553d9cff0b541bb1f0c83b92458a312f40bb25 (diff) |
gallium: Require LLVM >= 3.6
Reviewed-by: Timothy Arceri <[email protected]>
Reviewed-by: Jose Fonseca <[email protected]>
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build index f6017de7b99..b856f3acaec 100644 --- a/meson.build +++ b/meson.build @@ -1264,7 +1264,7 @@ elif with_gallium_swr elif with_gallium_opencl or with_gallium_r600 _llvm_version = '>= 3.9.0' else - _llvm_version = '>= 3.5.0' + _llvm_version = '>= 3.6.0' endif _shared_llvm = get_option('shared-llvm') |