in reply to boost.python C++ interoperability equivalent in Perl?

I would assume Inline::CPP, at least for the direction of calling C++ from Perl. For calling Perl code from C++, you will have to embed a Perl interpreter (see perlembed), or talk to Perl over a socket connection.

  • Comment on Re: boost.python C++ interoperability equivalent in Perl?

Replies are listed 'Best First'.
Re^2: boost.python C++ interoperability equivalent in Perl?
by hermida (Scribe) on Mar 03, 2011 at 19:17 UTC
    Hi thank you, I think I found maybe the more equivalent library than Inline::CPP... ExtUtils::XSpp?