-
Notifications
You must be signed in to change notification settings - Fork 25
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
clang support? #30
Comments
Was this resolved? I am also encountering the same issue. |
No, the author has not reacted in any way. I made myself a small patch for this package, which forces lcov to use llvm-cov: patch.txt. And a script to put somewhere in path as #!/bin/bash
exec llvm-cov gcov "$@" |
I don't personally have any insight into llvm or clang issues. If a PR can be created (that doesn't break existing workflows), happy to review, merge and re-release. |
Made a pull request for this (#33). Went with requiring a specific option only when using Clang coverage tools:
|
Is this package expected to work with clang? When following the instructions, the result of a coverage run is:
And when I do
gcov /home/user/dev/build/my_package/CMakeFiles/test_mytest.dir/test/test_mytest.cpp.gcno
manually, I getBut when I do
llvm-cov gcov /home/user/dev/build/my_package/CMakeFiles/test_mytest.dir/test/test_mytest.cpp.gcno
, it does display some coverage info.Or is this just a local workspace configuration problem?
The text was updated successfully, but these errors were encountered: