I measure coverage for my code using gcov library and I would like to generate coverage report in user-friendly format. I\'ve found lcov utility for that, but it\'s not comp
There is also a windows version of LCOV https://github.com/valbok/lcov with explanation how to use it. We had some problems to use native or another versions of LCOV. For example from here http://simply-embedded.blogspot.com/2014/07/code-coverage-html-reports-using-lcov.html
Our flow is something like:
Build a project in Windows using ARM QNX GCC compiler, collect gcno files.
Copy binaries and configs to a target under QNX and run them, collect gcda files.
Run LCOV (on Windows or Linux) to create reports.
In case of using native version of LCOV, reports will be broken due to mess up of windows and linux paths and some bugs inside LCOV scripts. We had to fix the scripts a bit to avoid problems like dir duplicates, slashes, broken paths etc.