clang_config_tool.patch 368 B

1234567891011121314
  1. Workaround the CMake dependency lookup returning a different LLVM to llvm-config.
  2. Bug: https://bugs.gentoo.org/907965
  3. --- a/meson.build
  4. +++ b/meson.build
  5. @@ -1691,6 +1691,7 @@ if _llvm.allowed()
  6. static : not _shared_llvm,
  7. fallback : ['llvm', 'dep_llvm'],
  8. include_type : 'system',
  9. + method: 'config-tool',
  10. )
  11. with_llvm = dep_llvm.found()
  12. endif