I wanted to build an awesome place for people to discuss module specific issues, but I don't have any more time for this, and there are much better places to discuss Perl-related issues. I'd recommend asking your question on Stack Overflow or on Perl Monks.
If you are looking for a Perl tutorial or Perl-related news, I hope these links will serve you well.
Posted on 2008-07-01 19:13:35-07 by 411seeker
DBD:Oracle compile on hpux 11.23 linker error unrecognized argument
Ran into an issue and a resolution that others may benefit from. HPUX 11.23 Oracle 10gr2 DBD:Oracle 1.21 perl -V Summary of my perl5 (revision 5 version 8 subversion 8) configuration: Platform: osname=hpux, osvers=11.22, archname=IA64.ARCHREV_0-thread-multi ... ISSUE: during make linker failed with unrecognized argument ld: -Wl,+b/u01/oracle/product/10.2/.... RESOLUTION: edit Makefile.PL change $m =~ s/LD_RUN_PATH=(\S+)\s+(\S+)/$2 -Wl,+b$1/; to $m =~ "s/LD_RUN_PATH=(\S+)\s+(\S+)/$2 -Wl,+b $1/";
Direct Responses: 8221 | Write a response
Posted on 2008-07-02 15:49:07-07 by byterock in response to 8210
Re: DBD:Oracle compile on hpux 11.23 linker error unrecognized argument
Thanks for that I will make the change to the Makefile.PL By the way you might want to visit perl.dbi.users instead of this forum. This one sees very little traffic
Direct Responses: Write a response