in reply to Re^6: Not able to load module though @INC contains it
in thread Not able to load module though @INC contains it
It looks like your perl is 32-bit and you installed the 64-bit version of STAF (that's the reason for the "wrong ELF class: ELFCLASS64").
The '64' in sun4-solaris-64int stands for 64-bit integer support (i.e. compile time option USE_64_BIT_INT, not a 64-bit binary). Try
$ file /usr/bin/perl
On my Solaris 10 box, I do get (for the 'system' perl, which is v5.8.4):
/usr/bin/perl: ELF 32-bit MSB executable SPARC Version 1, dynamically + linked, stripped
archname is
$ /usr/bin/perl -V:archname archname='sun4-solaris-64int';
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^8: Not able to load module though @INC contains it
by chilukuri_perl (Novice) on Nov 30, 2009 at 15:51 UTC | |
by almut (Canon) on Nov 30, 2009 at 15:54 UTC | |
by chilukuri_perl (Novice) on Nov 30, 2009 at 16:29 UTC | |
by almut (Canon) on Nov 30, 2009 at 18:28 UTC | |
by chilukuri_perl (Novice) on Dec 01, 2009 at 07:48 UTC |