in reply to Need a Help - calling C program from Perl

Two options:

one: make an executable and then within your cgi script use one of the myriad of ways to execute the program (system,fork/exec,qx).

or

two: wrap the library (.so file) within XS or Inline::C or SWIG.

-derby

  • Comment on Re: Need a Help - calling C program from Perl