You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When adding a breakpoint in gdb to b pp.c:3586 it c, we can see that we are going to the correct pp function
(gdb) bt
#0 Perl_pp_index () at pp.c:3586
#1 0x00007fffefcfbd68 in ab_pp_index () at arybase.xs:335
#2 0x00007ffff7883887 in Perl_runops_standard () at run.c:41
#3 0x00007ffff77c2c92 in S_run_body (oldscope=1) at perl.c:2485
#4 0x00007ffff77c278b in perl_run (my_perl=0x603010) at perl.c:2408
#5 0x0000000000400f5f in main (argc=2, argv=0x7fffffffdcb8, env=0x7fffffffdcd0) at perlmain.c:116
the retval from Perl_pp_index is also correct.
When checking PL_curcop, seems like the cop_hints_hash is set correctly
with cop_hint_stash set to
This looks like another hints_hash issue, as $[ is saved in hints.
When set to 1 it's going to load pp code from ext/arybase/arybase.xs instead of pp.c
When adding a breakpoint in gdb to
b pp.c:3586
it c, we can see that we are going to the correct pp functionthe
retval
from Perl_pp_index is also correct.When checking PL_curcop, seems like the cop_hints_hash is set correctly
with cop_hint_stash set to
we can also noticed that the binary is linked to arybase.so
The text was updated successfully, but these errors were encountered: