in reply to DBD::Oracle install on Mac OSX 10.8.5 (Mountain Lion)
Any advice?
(mwahaha)
Its set to 32 bit lib of oracle. and PERL5LIB is set to 32 bit perl
What is set to 32 bit of oracle? What does PERL5LIB have to do with LD_LIBRARY_PATH? Do you still have a problem?
LD_LIBRARY_PATH, Re: perlbrew/cpanm on 64 bit Ubuntu Re: cpanm --sudo installs to /root/perl5 instead of /usr, http://perldoc.perl.org/ExtUtils/MakeMaker.html#LIBS, C_INCLUDE_PATH/LIBRARY_PATH... repeat
Its one of these things, just figure it out :)
Finally with some work around I fixed it. yeeepeee..!!! Here is the steps I took. Updating for others references.
Congratulations, I know that feeling :)
So you hacked Makefile? That works. The following might also work
Before running Makefile.PL
export CFLAGS='-m32' export CXXFLAGS='-m32' export LDFLAGS='-m32'
Or as arguments to Makefile.PL
perl Makefile.PL CFLAGS=-m32 CXXFLAGS=-m32 LDFLAGS=-m32
This should propagate -m32 as arguments to gcc/ldd
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: DBD::Oracle install on Mac OSX 10.8.5 (Mountain Lion) (mwahaha)
by mpettis (Beadle) on Oct 10, 2013 at 01:17 UTC | |
by cristianabs (Initiate) on Dec 05, 2013 at 17:25 UTC | |
by Corion (Patriarch) on Dec 05, 2013 at 18:00 UTC | |
by cristianabs (Initiate) on Jan 14, 2014 at 01:40 UTC | |
by Anonymous Monk on Jan 14, 2014 at 01:53 UTC | |
by pillmill (Initiate) on Feb 04, 2014 at 21:00 UTC | |
by Anonymous Monk on Feb 05, 2014 at 00:33 UTC |