Any advice?

(mwahaha)

Re^4: Installing 32 BIT DBI and DBD

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 :)

Re^2: Installing 32 BIT DBI and DBD

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


In reply to Re: DBD::Oracle install on Mac OSX 10.8.5 (Mountain Lion) (mwahaha) by Anonymous Monk
in thread DBD::Oracle install on Mac OSX 10.8.5 (Mountain Lion) by mpettis

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.