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


in reply to Re: Vendor program can't load *.so file after OS patching
in thread Vendor program can't load *.so file after OS patching

Hello again.

The first person who responded to this thread pointed me in the right direction.

For some odd reason the application was using the OS perl instead of the perl bundled within the app.

The OS perl was a link to a 32-bit version of perl, that's why we got reference to i386 and ELFCLASS error.

We fixed that so the link is now to a 64-bit version of perl.

So now whether the app version or OS version is used, the application should start up fine.

We're still not sure why the app startup chose the OS version over the app version of perl.

The app version is listed first in the PATH environment variable.

Anyway, we have the perl issue figured out and I appreciate the assistance.

Thanks all.

  • Comment on Re^2: Vendor program can't load *.so file after OS patching