2
votes
3answers
84 views
How do I write a Perl constructor in XS?
I am trying to write new XS module for Perl. I have tested by following XS module writing instruction and it is working fine.
I am not able to understand how to I write new method for XS
I have a …
3
votes
2answers
99 views
Why do I get “undefined reference” errors when I compile my XS with Perl 5.10?
Hi
I have a C++ object that I am converting to Perl using Perl XS. This process works fine with Perl 5.8.5 and 5.8.7. But as soon as I try to use Perl 5.10.0, I run into a lot of compile errors. …
10
votes
3answers
152 views
What is the modern way of creating an XS module from scratch?
I need to write an XS module for Perl. It is my understanding that h2xs is pretty much deprecated today, what is the preferred method for starting an XS module today? I looked at Module::Starter, …
