diff options
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meson.build b/meson.build index e96dc864986..bc3bbf41a65 100644 --- a/meson.build +++ b/meson.build @@ -589,7 +589,9 @@ if with_llvm '-DMESA_LLVM_VERSION_PATCH=@0@'.format(_llvm_patch), ] else - if with_amd_vk or with_gallium_radeonsi + if with_gallium_softpipe + error('Cannot find LLVM to build LLVMPipe. If you wanted softpipe pass -Dllvm=false to meson') + elif with_amd_vk or with_gallium_radeonsi # etc error('The following drivers requires LLVM: Radv, RadeonSI. One of these is enabled, but LLVM was not found.') endif endif |