diff options
author | Dylan Baker <[email protected]> | 2018-12-31 19:23:52 -0800 |
---|---|---|
committer | Dylan Baker <[email protected]> | 2019-01-02 09:30:12 -0800 |
commit | a2596450ac7330c8965c819491038fb1ad454333 (patch) | |
tree | 60ce728eb25309fbb2c5280e06e91f2114fae4a7 | |
parent | 1b97a72328b7b549aa8d050495f504815444c0dd (diff) |
meson: Error out if building nouveau and using LLVM without rtti
Nouveau requires rtti. Often LLVM is configured without rtti, and code
with and without cannot be linked safely. Lets just error out if nouveau
is requested and llvm is built without rtti.
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=109202
Fixes: c5a97d658ec19cc02719d7f86c1b0715e3d9ffc4
("meson: fix builds against LLVM built without rtti")
Reviewed-by: Bas Nieuwenhuizen <[email protected]>
-rw-r--r-- | meson.build | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meson.build b/meson.build index 3e4afcef130..709f77a9c7a 100644 --- a/meson.build +++ b/meson.build @@ -1231,6 +1231,9 @@ if with_llvm # programs, so we need to build all C++ code in mesa without rtti as well to # ensure that linking works. if dep_llvm.get_configtool_variable('has-rtti') == 'NO' + if with_gallium_nouveau + error('The Nouveau driver requires rtti. You either need to turn off nouveau or use an LLVM built with LLVM_ENABLE_RTTI.') + endif cpp_args += '-fno-rtti' endif elif with_amd_vk or with_gallium_radeonsi or with_gallium_swr |