in reply to Re: Installing 32 BIT DBI and DBD
in thread 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

Replies are listed 'Best First'.
Re^3: Installing 32 BIT DBI and DBD
by gaurav_herein (Novice) on Sep 06, 2013 at 11:51 UTC
    OK. I will try this as well on other server next time.

    Thanks Guys :)