]> git.ozlabs.org Git - ccan/commitdiff
ccanlint: Correct default coverage tool for clang
authorDavid Gibson <david@gibson.dropbear.id.au>
Wed, 18 Jan 2017 21:56:48 +0000 (08:56 +1100)
committerDavid Gibson <david@gibson.dropbear.id.au>
Wed, 18 Jan 2017 23:23:38 +0000 (10:23 +1100)
Currently ccanlint defaults to using "gcov" as the coverage analysis tool
for any compiler defining __GNUC__.  That's generally correct for the
(system default) gcc.  However, clang also defines __GNUC__ because it
implements the GCC langauge extensions.  For clang, "gcov" is not the
correct coverage tool (clang does use roughly the gcov format, but unless
you're very lucky the system gcc and system clang won't use the same gcov
versions).

This changes the default coverage tool in the case of clang to the correct
"llvm-cov gcov".

Signed-off-by: David Gibson <david@gibson.dropbear.id.au>

No differences found