lcov icon indicating copy to clipboard operation
lcov copied to clipboard

The syntax of the command is incorrect

Open tarek-kandil opened this issue 7 years ago • 2 comments

It says genhtml.perl: ERROR: cannot create directory gcov/html/!

tarek-kandil avatar Nov 09 '17 09:11 tarek-kandil

the same error

Indigo6 avatar Apr 09 '19 07:04 Indigo6

It says genhtml.perl: ERROR: cannot create directory gcov/html/!

I fixed it. It comes from

sub create_sub_dir($)
{
    my ($dir) = "gcov\\html";         //was "gcov/html"
    printf("%s\n",$dir);
    system("mkdir",$dir);
}

and Windows cmd does not support 'mkdir gcov/html'

Indigo6 avatar Apr 12 '19 02:04 Indigo6