AdamNiederer / cov

An emacs extension for displaying coverage data on your code
GNU General Public License v3.0
76 stars 16 forks source link

Add support for using gcov intermediate output files #12

Closed alexmurray closed 7 years ago

alexmurray commented 7 years ago

These are used by lcov and other tools

alexmurray commented 7 years ago

The intermediate format is a bit easier to parse IMO - https://gcc.gnu.org/ml/gcc-patches/2013-05/msg01657.html - and if projects are already using lcov etc you get it for free.

alexmurray commented 7 years ago

Actually scratch that last commit - I had something wrong in my local setup...

AdamNiederer commented 7 years ago

Thanks!