views:

94

answers:

3

Hi, A while ago I found a library that allowed calling individual built-in Perl functions in C++, I cannot find it now.

Can you tell me where I can find it on the net?

Thanks.

A: 

http://www.johnkeiser.com/perl-xs-c++.html

http://search.cpan.org/~jtobey/C-DynaLib-0.55/DynaLib.pm

Pardeep
That works the other way around: calling C++ functions from Perl
Leon Timmermans
+1  A: 

Read perlembed and Extending and Embedding Perl.

daxim
+6  A: 

You might want to try libperl++. It's still kind of beta, but the part that involves calling perl from C++ has been mature for quite some time. It's much easier to use than the perl API itself.

Full disclosure: I'm the author of libperl++

Leon Timmermans
yes, that is the closest.
Aftershock