We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1318094 commit 68d724aCopy full SHA for 68d724a
scripts/lib/Devel/PatchPerl/Plugin/MinGW.pm
@@ -959,11 +959,9 @@ sub _write_gnumakefile {
959
$makefile =~ s/__PERL_MINOR_VERSION__/$v[0]$v[1]/g;
960
$makefile =~ s/__PERL_VERSION__/$v[0]$v[1]$v[2]/g;
961
962
- # disable optimize because the their builds fail.
+ # disable optimize because the the builds fail with ExceptionCode.EXCEPTION_ACCESS_VIOLATION.
963
# they maybe contain undefined behavior???
964
- if($version eq "5.10.0" || $version eq "5.12.5") {
965
- $makefile =~ s/-O2/-O0/g;
966
- }
+ $makefile =~ s/-O2/-O0/g;
967
968
_write_or_die(File::Spec->catfile("win32", "GNUmakefile"), $makefile);
969
}
0 commit comments