The perl Configure file was matching GCC 10 against "1*" and treating it as GCC 1, causing ABI breakage and segfaults. Cherry-pick the upstream patch which fixes it to check against (e.g) "1.*" instead, which will make it work for hundreds more GCC versions to come. https://github.com/Perl/perl5/commit/6bd6308fcea3541 "Adapt Configure to GCC version 10" Also includes the previous commit just adding GCC 8 and 9 to one case: https://github.com/Perl/perl5/commit/ae195500577d707 "Add gcc-8 and gcc-9 for FORTIFY_SOURCE" Signed-off-by: Ken Wong <xinxijishuwyq@gmail.com> |
||
---|---|---|
.. | ||
files | ||
patches | ||
Config.in | ||
Makefile | ||
perlbase.mk | ||
perlmod.mk | ||
perlver.mk | ||
README.patches |
The patches in this package are loosely sorted into the following categories: 0xx - Bugfixes 1xx - Cross-compile fixes 3xx - Workarounds 7xx - Testsuite fixes Feel free to add another one if your new patch doesn't seem to fit into an existing category.