in reply to Re: problem finding symbol in XS-created .so
in thread problem finding symbol in XS-created .so

It also defines a fix for that
sub xs_c { my $cmd = shift->SUPER::xs_c(@_); $cmd .= << 'END'; sed -i -e 's/newXSproto("TagLib/newXSproto("Audio::TagLib/g' $*.c sed -i -e 's/XS(boot_TagLib)/XS(boot_Audio__TagLib)/g' $*.c END return $cmd; }

Replies are listed 'Best First'.
Re^3: problem finding symbol in XS-created .so
by geoffleach (Scribe) on May 25, 2010 at 16:49 UTC
    I'm sory, but I have no idea how this code relates to my problem.