in reply to Re^2: Not able to install DBD::Oracle on sun solaris.
in thread Not able to install DBD::Oracle on sun solaris.
These might be of interest:
http://twiki.org/cgi-bin/view/Codev/SolarisInstallCookbookPerlModules
http://search.cpan.org/~aburlison/Solaris-PerlGcc-1.3/pod/perlgcc.pod
Setting up perlbrew for Linux and Solaris
Compile Error for Sun Solaris 10 module IO
Problem Compiling under Solaris using DBI and DBD::DB2
https://metacpan.org/pod/distribution/perl/INSTALL
Building CPAN Perl modules on Solaris 10 (and 11)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Not able to install DBD::Oracle on sun solaris.
by Ankur_kuls (Sexton) on Dec 18, 2014 at 12:30 UTC | |
Thanks I am now able to install perl in my custom directory..which is /cac/customperl/bin/perl/..Now when I am trying to install DBD::Oracle 1.74 using below commands.
at make test It is throwing the below error
not able to understand this error. could anyone please help? | [reply] [d/l] [select] |
by Corion (Patriarch) on Dec 18, 2014 at 12:43 UTC | |
You're mixing different architectures. If you built a 32-bit Perl, you will need to link the 32-bit Oracle libraries. If you built a 64-bit Perl, you will need to link the 64-bit Oracle libraries. You will determine the architecture of your Oracle libraries and your Perl, and then set up $ENV{LD_LIBRARY_PATH} appropriately if you have both kinds of libraries installed. | [reply] [d/l] [select] |
|
Re^4: Not able to install DBD::Oracle on sun solaris.
by Ankur_kuls (Sexton) on Dec 19, 2014 at 05:21 UTC | |
Hi Marto... I am sorry for the confusion created.. Actually I have been trying to install this module for last few days without success and got completely lost and confused.. below is the details of my custom perl...
Apart from this I was searching for this issue and got this link. http://stackoverflow.com/questions/10953511/error-when-trying-to-install-dbdoracle-with-cpanm but the difference here is the that I have lib32 file in my $ORACLE_HOME instead of lib64. so would the re installation with below command resolve my issue...please help ./Configure -es prefix=/cac/customeperl -Dcc=gcc -Duse32bitall -Dusethreads | [reply] [d/l] [select] |
by marto (Cardinal) on Dec 19, 2014 at 09:16 UTC | |
"Hi Marto... I am sorry for the confusion created." You've replied to the wrong person, you don't seem to be paying attention to what you're doing.
Again, you're not paying attention, or learning from what you've already been told. -Dprefix= "Actually I have been trying to install this module for last few days without success and got completely lost and confused" Learn from the mistakes you've made and the answers people give you, read the documentation. Update: fixed typo. | [reply] [d/l] [select] |
|
Re^4: Not able to install DBD::Oracle on sun solaris.
by Ankur_kuls (Sexton) on Dec 18, 2014 at 20:12 UTC | |
thanks Corion..not able to reply on your answer... my perl and sqlplus, both are 64 bit...also I don't have much Idea on this...could you please help me understand how to set LD_LIBRARY_PATH... my perl is 64 bit..
| [reply] [d/l] |
by marto (Cardinal) on Dec 19, 2014 at 04:54 UTC | |
You claim to have built v5.20 specifically to avoid using the ancient system perl. Why are you showing the perl -v output for the system perl? Please pay attention to what you're doing, and be consistent in your approach. | [reply] [d/l] |
by Corion (Patriarch) on Dec 19, 2014 at 08:05 UTC | |
If this is Solaris and you have problems with setting up LD_LIBRARY_PATH, I can only suggest that you consult with your system administrator. | [reply] |