We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
There is a bit of overlap between clang/find_clang.cr and clang/CMakeLists.txt.
find_clang supports finding the clang++ binary, but this is redundant as CMake will figure it out and call find_clang with option --clang PATH.
Also, as @kalinon mentions in #32 , probably more optimizations can be made by directly reading values from one of:
llvm-config --cxxflags --ldflags --libs all --includedir
Instead of parsing those values out manually from parts of clang++ output.
The text was updated successfully, but these errors were encountered:
llvm-config --binpath as well
llvm-config --binpath
Sorry, something went wrong.
No branches or pull requests
There is a bit of overlap between clang/find_clang.cr and clang/CMakeLists.txt.
find_clang supports finding the clang++ binary, but this is redundant as CMake will figure it out and call find_clang with option --clang PATH.
Also, as @kalinon mentions in #32 , probably more optimizations can be made by directly reading values from one of:
Instead of parsing those values out manually from parts of clang++ output.
The text was updated successfully, but these errors were encountered: