http://www.perlmonks.org?node_id=1013826


in reply to Compile a perl module from a shared object in Unix (AIX)

The two are companion files, but you cannot generate one from the other.

You haven't told us where these files are supposed to come from, but a cursory Google search suggests that they are somehow related to SUMA. I can only suggest you contact them to supply you with the appropriate files...

  • Comment on Re: Compile a perl module from a shared object in Unix (AIX)

Replies are listed 'Best First'.
Re^2: Compile a perl module from a shared object in Unix (AIX)
by Kyomizudera (Initiate) on Jan 17, 2013 at 18:51 UTC
    Is there a way to trick perl into referencing the .so file since it is a binary form or the perl module? Can I force the script that is calling for the CatGetS.pm in the @INC to refer to the CatGetS.so through some manipulation of the perl environment or the perl script? Thanks J

      No.

      The .so belongs to the .pm file, but they are different things and you cannot get one from the other. The .so file is not a compiled .pm file. You cannot get from one file to the other file.