Quoting Nigel Henden <[EMAIL PROTECTED]>: > Here is as far as I get (the last nine lines), after typing "make" > [SNIP] > ld: warning: option -o appears more than once, first setting taken > chmod 755 blib/arch/auto/DBD/Oracle/Oracle.so > chmod: WARNING: can't access blib/arch/auto/DBD/Oracle/Oracle.so > make: *** [blib/arch/auto/DBD/Oracle/Oracle.so] Error 1
I had this problem making DBD::Oracle using GCC 2.95.3 under Solaris 8 for sparc. After I ran "perl Makefile.PL" I had to go through the resulting "Makefile" and remove a few "-o build" strings from GCC statements. These statements contains "-o build" quite early on, and then have another "-o ..." statement at the end. The latter statement appears to be the correct one but because there are two you get the error you are seeing. After messing with the makefile I found DBD::Oracle built cleanly and my app is happily using it at the moment. Good luck, -- Sean Kelly <[EMAIL PROTECTED]>
