how would inline::cpp help me with embedding perl in an c++ project AND THEN calling some functions that where declared BY THE SAME c++ CODE THAT embedded the perl script from WITHIN the running and embedded perl code? | [reply] |
| [reply] |
and once more ... i dont want to just call some random XS wrapped funcs ... i want to call funcs that i declared in c++ BEFORE starting the perlembed stuff already ... they are in the memory ... i want to access them from the embdedded perl script ...
| [reply] |
this still does not answer my question about the "HOW" ... :-(
| [reply] |
You can look at the code produced by Inline::CPP to see how it calls CPP routines and how it compiles and links the code. In short, it is a way for you to generate your own examples that call your own code. But I agree that it will not produce an example of a C++ routine calling an embeded perl interpreter calling a C++ routine - sorry...
| [reply] |