Bug 416010 - Missing detection for llvm *git version
Summary: Missing detection for llvm *git version
Status: RESOLVED FIXED
Alias: None
Product: kdevelop
Classification: Applications
Component: general (show other bugs)
Version: 5.4.5
Platform: Gentoo Packages Linux
: NOR normal
Target Milestone: ---
Assignee: kdevelop-bugs-null
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2020-01-08 17:52 UTC by Gustaw Smolarczyk
Modified: 2020-01-22 09:30 UTC (History)
2 users (show)

See Also:
Latest Commit:
Version Fixed In:
Sentry Crash Report:


Attachments
Patch suggestion (605 bytes, patch)
2020-01-20 10:10 UTC, slavko
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Gustaw Smolarczyk 2020-01-08 17:52:33 UTC
llvm built from master on gentoo is checked out using git instead of svn (the reason might also be that LLVM project is in the process of moving to git completely [1]). Because of that the llvm-config returns something like this:

$ llvm-config --version
10.0.0git

A year ago a patch [2] added support for the svn suffix, it would be nice to have support for the git suffix as well.

Right now instead the llvm is not detected correctly:

-- Found LLVM (version: 10.0.0git): (using /usr/lib/llvm/10/bin/llvm-config)
--   Include dirs:   /usr/lib64/llvm/10/include
--   LLVM libraries: /usr/lib64/llvm/10/lib64/libLLVM-10git.so
-- Found LLVM (version: 10.0.0git): (using /usr/lib/llvm/10/bin/llvm-config)
--   Include dirs:   /usr/lib64/llvm/10/include
--   LLVM libraries: /usr/lib64/llvm/10/lib64/libLLVM-10git.so
-- Found LLVM (version: 10.0.0git): (using /usr/lib/llvm/10/bin/llvm-config)
--   Include dirs:   /usr/lib64/llvm/10/include
--   LLVM libraries: /usr/lib64/llvm/10/lib64/libLLVM-10git.so
-- Found LLVM (version: 10.0.0git): (using /usr/lib/llvm/10/bin/llvm-config)
--   Include dirs:   /usr/lib64/llvm/10/include
--   LLVM libraries: /usr/lib64/llvm/10/lib64/libLLVM-10git.so
-- Found LLVM (version: 10.0.0git): (using /usr/lib/llvm/10/bin/llvm-config)
--   Include dirs:   /usr/lib64/llvm/10/include
--   LLVM libraries: /usr/lib64/llvm/10/lib64/libLLVM-10git.so
-- Found LLVM (version: 10.0.0git): (using /usr/lib/llvm/10/bin/llvm-config)
--   Include dirs:   /usr/lib64/llvm/10/include
--   LLVM libraries: /usr/lib64/llvm/10/lib64/libLLVM-10git.so
-- Found LLVM (version: 10.0.0git): (using /usr/lib/llvm/10/bin/llvm-config)
--   Include dirs:   /usr/lib64/llvm/10/include
--   LLVM libraries: /usr/lib64/llvm/10/lib64/libLLVM-10git.so
-- Found LLVM (version: 10.0.0git): (using /usr/lib/llvm/10/bin/llvm-config)
--   Include dirs:   /usr/lib64/llvm/10/include
--   LLVM libraries: /usr/lib64/llvm/10/lib64/libLLVM-10git.so
CMake Error at cmake/modules/FindClang.cmake:116 (message):
  Could not find Clang builtin directory
Call Stack (most recent call first):
  plugins/CMakeLists.txt:43 (find_package)

[1] http://blog.llvm.org/2019/08/the-llvm-project-is-moving-to-github.html
[2] https://phabricator.kde.org/D15998
Comment 1 slavko 2020-01-20 10:10:29 UTC
Created attachment 125258 [details]
Patch suggestion
Comment 2 Milian Wolff 2020-01-22 09:24:10 UTC
Git commit 23c7fec54cc273312a195361cf1add20ab18f3a4 by Milian Wolff.
Committed on 22/01/2020 at 09:24.
Pushed by mwolff into branch '5.4'.

Fix build against clang built from git

M  +2    -0    cmake/modules/FindClang.cmake

https://invent.kde.org/kde/kdevelop/commit/23c7fec54cc273312a195361cf1add20ab18f3a4
Comment 3 Milian Wolff 2020-01-22 09:30:18 UTC
thank you!