-
Notifications
You must be signed in to change notification settings - Fork 13.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
libclang does not get the header search correct #18150
Comments
@jgunthorpe is this your bug originally? Was there any resolution? Do you have a workaround? I'm struggling with libclang header search paths. I can parse I keep hitting the error messages referenced in https://reviews.llvm.org/D131441 i.e. apparently llvm C++ headers find the wrong C headers first. |
@ldionne I'm guessing you authored https://reviews.llvm.org/D131441. It sounds like libclang should figure out the header search path automatically, but that doesn't seem to always be the case. |
The patch you linked to catches instances where the search paths are in the incorrect order. It doesn't provide anything for when the headers are not found at all, which can't be solved from the library side. |
@ldionne sorry for pulling you into something that can barely be called a conversation due to the lag on my side, but please bear with me...
Okay, that's fair.
What I'm seeing in many cases is that the headers are there, properly installed, but libclang fails to locate them.
See for example jnikula/hawkmoth#262 (comment) The questions are:
|
Everything works in Debian, but they carry this change against upstream: https://salsa.debian.org/pkg-llvm-team/llvm-toolchain/-/blob/18/debian/patches/fix-clang-path-and-build.diff Should upstream libclang have that? Should all the distros have that? |
This reverts the effects of commit 1243852, while fixing the inconsistent handling of C/C++ domains since libclang can't always figure out the right search paths for its own version of Clang despite prior claims. It is still unclear whether the upstream issue is an actual issue or if this is the intended behaviour (llvm/llvm-project#18150), though it _is_ an issue and simply using the fixed helper function and configuration parameter comes at a suitably low cost to maintenance. Fixes jnikula#262.
This reverts the effects of commit 1243852, while fixing the inconsistent handling of C/C++ domains since libclang can't always figure out the right search paths for its own version of Clang despite prior claims. It is still unclear whether the upstream issue is an actual issue or if this is the intended behaviour (llvm/llvm-project#18150), though it _is_ an issue and simply using the fixed helper function and configuration parameter comes at a suitably low cost to maintenance. Fixes jnikula#262.
This reverts the effects of commit 1243852, while fixing the inconsistent handling of C/C++ domains since libclang can't always figure out the right search paths for its own version of Clang despite prior claims. It is still unclear whether the upstream issue is an actual issue or if this is the intended behaviour (llvm/llvm-project#18150), though it _is_ an issue and simply using the fixed helper function and configuration parameter comes at a suitably low cost to maintenance. Fixes jnikula#262.
This reverts the effects of commit 1243852, while fixing the inconsistent handling of C/C++ domains since libclang can't always figure out the right search paths for its own version of Clang despite prior claims. It is still unclear whether the upstream issue is an actual issue or if this is the intended behaviour (llvm/llvm-project#18150), though it _is_ an issue and simply using the fixed helper function and configuration parameter comes at a suitably low cost to maintenance. Fixes jnikula#262.
This reverts the effects of commit 1243852, while fixing the inconsistent handling of C/C++ domains since libclang can't always figure out the right search paths for its own version of Clang despite prior claims. It is still unclear whether the upstream issue is an actual issue or if this is the intended behaviour (llvm/llvm-project#18150), though it _is_ an issue and simply using the fixed helper function and configuration parameter comes at a suitably low cost to maintenance. Fixes jnikula#262.
This reverts the effects of commit 1243852, while fixing the inconsistent handling of C/C++ domains since libclang can't always figure out the right search paths for its own version of Clang despite prior claims. It is still unclear whether the upstream issue is an actual issue or if this is the intended behaviour (llvm/llvm-project#18150), though it _is_ an issue and simply using the fixed helper function and configuration parameter comes at a suitably low cost to maintenance. Fixes jnikula#262.
This reverts the effects of commit 1243852, while fixing the inconsistent handling of C/C++ domains since libclang can't always figure out the right search paths for its own version of Clang despite prior claims. It is still unclear whether the upstream issue is an actual issue or if this is the intended behaviour (llvm/llvm-project#18150), though it _is_ an issue and simply using the fixed helper function and configuration parameter comes at a suitably low cost to maintenance. Fixes #262.
@jnikula Sorry for the much delayed response :-) From my perspective, |
@ldionne No worries! I think in the big picture the question is, how is one supposed to use
Except there's a catch. Even Things like:
So if I write a tool that's based on |
I can suppress the warnings by using |
When using the Clang library, including the C API libclang, the header search paths might not be expected, and it might be unfixable. The correct search paths depend on context that the library can’t always determine without additional input from the user. The result is a variety of potential scenarios, each requiring specific configuration. |
Extended Description
For instance, if we run one of the included python tests using the raw build directory from cmake+ninja:
$ LD_LIBRARY_PATH=/scratchl/jgg/llvm/build/lib/ PYTHONPATH=/scratchl/jgg/llvm/tools/clang/bindings/python
python /scratchl/jgg/llvm/tools/clang/bindings/python/examples/cindex/cindex-dump.py t.c -v
Here! ../tools/clang/lib/Driver/Driver.cpp:68 Dir=
clang version 3.4
Target: x86_64-unknown-linux-gnu
Thread model: posix
Found candidate GCC installation: /usr/lib/gcc/i686-linux-gnu/4.7
Found candidate GCC installation: /usr/lib/gcc/i686-linux-gnu/4.7.3
Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/4.7
Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/4.7.3
Selected GCC installation: /usr/lib/gcc/x86_64-linux-gnu/4.7
Here! ../tools/clang/lib/Frontend/ASTUnit.cpp:2038 ResourceFilesPath=/scratchl/jgg/llvm/build/lib/clang/3.4
ignoring nonexistent directory "../lib/clang/3.4/include"
The 'ignoring nonexistent directory' line shows the wrong path, it should be prefixed with the bin dir. Eg when running clang natively that doesn't print and the search path properly includes:
/scratchl/jgg/llvm/build/bin/../lib/clang/3.4/include
Which is missing from the libclang version.
This problem causes parses through libclang to fail, typically with cannot find stddef.h warnings.
I've edited the source (using GIT as of today) and added some Here! prints to show some of the flow.
Analysis:
libclang uses the code in CIndexer::getClangResourcesPath() to locate the installation relative to the shared library location. This code is working fine, the 2nd Here! above prints the result of that function as it shows up in ASTUnit::LoadFromCommandLine as ResourceFilesPath
However, the value ResourceFilesPath is no longer used on Linux because InitHeaderSearch::AddDefaultIncludePaths exits early. On Linux the include files are found via the Driver constructor's ClangExecutable argument, which is wired to 'clang' when libclang is being used.
Which is because of this code in clang::createInvocationFromCommandLine
// FIXME: We shouldn't have to pass in the path info.
driver::Driver TheDriver("clang", llvm::sys::getDefaultTargetTriple(),
"a.out", *Diags);
The driver should probably be created with something like ResourceFilesPath + "../bin/clang" until the FIXME is solved properly..
The text was updated successfully, but these errors were encountered: