Subject: | gcc check under Windows is broken |
in ExtUtils::MM_Win32 line 35:
my $GCC = $Config{'cc'} =~ /\bgcc$/i ? 1 : 0;
$Config{'cc'} can take a values like "C:/MinGW/bin/gcc.exe" either that
dollar sign must go away or the extension must also be checked:
my $GCC = $Config{'cc'} =~ /\bgcc(?:\.exe)?$/i ? 1 : 0;
I was getting nonsense failures recently (and unfortunately, sending
nonsense test reports), because of this.
Thanks,
Burak