Skip to content

Commit 08fe4b5

Browse files
committed
Re-enable llvm/11 ('llvm-cov gcov ...')
Signed-off-by: Henry Cox <[email protected]>
1 parent dc685d0 commit 08fe4b5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

bin/geninfo

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,7 @@ our @gcov_tool;
107107

108108
our $GCOV_VERSION_8_0_0 = 0x80000;
109109
our $GCOV_VERSION_4_7_0 = 0x40700;
110+
our $GCOV_VERSION_4_2_0 = 0x40200; # llvm/11
110111

111112
# Compatibility mode values
112113
our $COMPAT_VALUE_OFF = 0;
@@ -494,7 +495,7 @@ if (!@data_directory) {
494495
@data_directory = @dirs;
495496
}
496497

497-
if ($gcov_version < $GCOV_VERSION_4_7_0) {
498+
if ($gcov_version < $GCOV_VERSION_4_2_0) {
498499
die("Your toolchain version is too old and is no longer supported by lcov. Please upgrade - or use an older lcov release."
499500
);
500501
}

0 commit comments

Comments
 (0)