You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently only building within the LLVM project setup is possible. This is a tiresome process as LLVM builds for about 4 hours straight. I was able to build the tool using the system install of llvm/clang using the following compile flags:
I've tried using a compile_commands.json, and setting the paths manually using the --extra-arg switch, and both failed.
For this purpose, I should look into how other llvm/clang based tools, like ccls for example, have configured their CMakeLists.txt, as it can work with both, system library or the prepackaged release version of the library.
The text was updated successfully, but these errors were encountered:
Currently only building within the LLVM project setup is possible. This is a tiresome process as LLVM builds for about 4 hours straight. I was able to build the tool using the system install of llvm/clang using the following compile flags:
The llvm part of the output has been generated with the following command:
This seems to be llvm's replacement for pkg-config.
However, the tool could not find any of the system headers. This is the output of a test run on a dummy file:
I've tried using a
compile_commands.json
, and setting the paths manually using the--extra-arg
switch, and both failed.For this purpose, I should look into how other llvm/clang based tools, like ccls for example, have configured their CMakeLists.txt, as it can work with both, system library or the prepackaged release version of the library.
The text was updated successfully, but these errors were encountered: