in reply to Re^4: Env Variables
in thread Env Variables

#BEGIN{ $ENV{'ORACLE_HOME'}="/opt/oracle/product/10.2.0/client_1"; $ENV{'LD_LIBRARY_PATH'}="/opt/oracle/product/10.2.0/client_1/lib32:/us +r/local/lib/sprolib:/usr/local/lib:/usr/lib:/usr/openwin/lib:/usr/dt/ +lib:/usr/lib:/usr/ucblib";
shows /opt/oracle/product/10.2.0/client_1/lib32. Perhaps this is a problem for you, resulting in wrong ELF class: ELFCLASS64?

Replies are listed 'Best First'.
Re^6: Env Variables
by almut (Canon) on Jun 10, 2010 at 20:27 UTC

    No, it's the other way round.  The lib32 is correct, but the attempt to set it didn't succeed (as explained further down in the thread).

    Carefully reading the error message

    ld.so.1: perl: fatal: /opt/oracle/product/10.2.0/client_1/lib/libclnts +h.so.10.1: wrong ELF class: ELFCLASS64

    we see that it says the library libclntsh.so.10.1 has been found in the lib/ directory (not lib32/).  Also, the runtime linker (ld.so.1) reports the incorrect ELF class (64-bit) the found library does have, not the class it should have.  From this it follows that the perl binary in question is 32-bit. In other words, lib32 is the correct path.

    </nitpick>

Re^6: Env Variables
by LinuxUser2008 (Acolyte) on Jun 11, 2010 at 03:06 UTC
    Hey man,i got it resolved finally.. Thanks for your suggestions.. The issue was with LD_LIBRARY_PATH not being read properly..
    Regards,
    Blub:)