Branch: refs/heads/blead
Home: https://github.com/Perl/perl5
Commit: 69b4fa321bd1c6357cd9687eef887d23ac009ab0
https://github.com/Perl/perl5/commit/69b4fa321bd1c6357cd9687eef887d23ac009ab0
Author: Tony Cook <[email protected]>
Date: 2022-11-28 (Mon, 28 Nov 2022)
Changed paths:
M t/porting/libperl.t
Log Message:
-----------
skip checking categorization of libperl symbols for LTO builds
For LTO builds with gcc and clang the PL_no_mem symbol as listed by
nm is flagged as "D" (writable data) and "T" (text, aka code)
respectively.
Looking at the final generated executable PL_no_mem does end up in
the .rodata (read only data) section, so it might be worth adding a
separate test for that.
Fixes #20518