| author | |
| committer | |
| log | cf939b096acfca67c87b698827f64d977853d722 |
| tree | 1cde9b9d504b8f42f74ca0948dd8b73672820130 |
| parent | 5d2bf96c02b766a6ddeb3bd0e8594f2c70c9bfb6 |
This fixes the failure to find CLANG_LIBRARIES on debian, which packages
the relevant .so file at these paths:
libclang-cpp18: /usr/lib/llvm-18/lib/libclang-cpp.so.18.1
libclang-cpp18: /usr/lib/x86_64-linux-gnu/libclang-cpp.so.18.1
libclang-cpp18: /usr/lib/x86_64-linux-gnu/libclang-cpp.so.18
(The latter two paths are symlinks to the first.)1 files changed, 1 insertions(+), 0 deletions(-)
cmake/Findclang.cmake+1| ... | @@ -18,6 +18,7 @@ if(${LLVM_LINK_MODE} STREQUAL "shared") | ... | @@ -18,6 +18,7 @@ if(${LLVM_LINK_MODE} STREQUAL "shared") |
| 18 | find_library(CLANG_LIBRARIES | 18 | find_library(CLANG_LIBRARIES |
| 19 | NAMES | 19 | NAMES |
| 20 | libclang-cpp.so.18 | 20 | libclang-cpp.so.18 |
| 21 | libclang-cpp.so.18.1 | ||
| 21 | clang-cpp-18.0 | 22 | clang-cpp-18.0 |
| 22 | clang-cpp180 | 23 | clang-cpp180 |
| 23 | clang-cpp | 24 | clang-cpp |