graq has asked for the wisdom of the Perl Monks concerning the following question:
The machine was handed to me with a 'pre-release' (beta?) version pre-installed on it. I downloaded Solaris 10 and installed (upgraded) that. I added a few packages - all with the noddy cc compiler that comes with it. I proceeded to install mysql (using pkgadd), followed rapidly by the attempt to install DBI.pm - which failed as I needed gcc in Configure.pm. After some discussion on CB, I decided to install a new copy of perl, using gcc.
So, I got gcc and used it to install a 2nd copy of Perl (so now there are two on the box 5.8.4 and 5.8.7). DBI.pm has installed (hurrah!), but DBD::mysql will not. I re-installed mysql (pkgrm, pkgadd) to make sure I had 32-bit versions of both and that both were installed using same compiler (I'm assuming that pkgadd will use gcc). I have read some notes that perl and mysql must be installed with the same compiler for DBD::mysql to work, so if anyone knows if I have missed anything, or a really good way to make sure...
I appreciate all the efforts by valiant monks in CB to help me, but I am still stuck.
Below is the output of 'make':
All comments appreciated.Removing previously used /.cpan/build/DBD-mysql-3.0002 CPAN.pm: Going to build C/CA/CAPTTOFU/DBD-mysql-3.0002.tar.gz I will use the following settings for compiling and testing: cflags (mysql_config) = -I/usr/local/mysql/mysql/include -xO3 + -mt -D_FORTEC_ -xarch=v8 -xc99=none embedded (mysql_config) = libs (mysql_config) = -xarch=v8 -L/usr/local/mysql/mysql/li +b -lmysqlclient -lz -lposix4 -lcrypt -lgen -lsocket -lnsl -lm -lmtmal +loc mysql_config (guessed ) = mysql_config nocatchstderr (default ) = 0 nofoundrows (default ) = 0 ssl (guessed ) = 0 testdb (default ) = test testhost (default ) = testpassword (default ) = testsocket (default ) = testuser (default ) = To change these settings, see 'perl Makefile.PL --help' and 'perldoc INSTALL'. Checking if your kit is complete... Looks good Unrecognized argument in LIBS ignored: '-xarch=v8' Using DBI 1.48 (for perl 5.008007 on sun4-solaris) installed in /opt/l +ib/perl5/site_perl/5.8.7/sun4-solaris/auto/DBI/ Writing Makefile for DBD::mysql cp lib/DBD/mysql.pm blib/lib/DBD/mysql.pm cp lib/DBD/mysql/GetInfo.pm blib/lib/DBD/mysql/GetInfo.pm cp lib/Mysql.pm blib/lib/Mysql.pm cp lib/DBD/mysql/INSTALL.pod blib/lib/DBD/mysql/INSTALL.pod cp lib/Mysql/Statement.pm blib/lib/Mysql/Statement.pm cp lib/Bundle/DBD/mysql.pm blib/lib/Bundle/DBD/mysql.pm gcc -c -I/opt/lib/perl5/site_perl/5.8.7/sun4-solaris/auto/DBI/ -I/usr +/local/mysql/mysql/include -xO3 -mt -D_FORTEC_ -xarch=v8 -xc99=none - +DDBD_MYSQL_INSERT_ID_IS_GOOD -g -fno-strict-aliasing -pipe -D_LARGEF +ILE_SOURCE -D_FILE_OFFSET_BITS=64 -O -DVERSION=\"3.0002\" -DXS_VE +RSION=\"3.0002\" -fPIC "-I/opt/lib/perl5/5.8.7/sun4-solaris/CORE" d +bdimp.c gcc: language c99=none not recognized gcc: dbdimp.c: linker input file unused because linking not done /opt/bin/perl -p -e "s/~DRIVER~/mysql/g" /opt/lib/perl5/site_perl/5.8. +7/sun4-solaris/auto/DBI//Driver.xst > mysql.xsi /opt/bin/perl /opt/lib/perl5/5.8.7/ExtUtils/xsubpp -typemap /opt/lib/ +perl5/5.8.7/ExtUtils/typemap mysql.xs > mysql.xsc && mv mysql.xsc my +sql.c Warning: duplicate function definition 'do' detected in mysql.xs, line + 224 Warning: duplicate function definition 'rows' detected in mysql.xs, li +ne 559 gcc -c -I/opt/lib/perl5/site_perl/5.8.7/sun4-solaris/auto/DBI/ -I/usr +/local/mysql/mysql/include -xO3 -mt -D_FORTEC_ -xarch=v8 -xc99=none - +DDBD_MYSQL_INSERT_ID_IS_GOOD -g -fno-strict-aliasing -pipe -D_LARGEF +ILE_SOURCE -D_FILE_OFFSET_BITS=64 -O -DVERSION=\"3.0002\" -DXS_VE +RSION=\"3.0002\" -fPIC "-I/opt/lib/perl5/5.8.7/sun4-solaris/CORE" m +ysql.c gcc: language c99=none not recognized gcc: mysql.c: linker input file unused because linking not done Running Mkbootstrap for DBD::mysql () chmod 644 mysql.bs rm -f blib/arch/auto/DBD/mysql/mysql.so LD_RUN_PATH="/usr/lib" /opt/bin/perl myld gcc -G dbdimp.o mysql.o - +o blib/arch/auto/DBD/mysql/mysql.so -L/usr/local/mysql/mysql/lib -l +mysqlclient -lz -lposix4 -lcrypt -lgen -lsocket -lnsl -lm -lmtmalloc gcc: dbdimp.o: No such file or directory gcc: mysql.o: No such file or directory *** Error code 1 make: Fatal error: Command failed for target `blib/arch/auto/DBD/mysql +/mysql.so' /usr/ccs/bin/make -- NOT OK
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Problems installing DBD::mysql on Solaris 10
by Perl Mouse (Chaplain) on Nov 02, 2005 at 16:40 UTC | |
by graq (Curate) on Nov 02, 2005 at 16:51 UTC | |
by Perl Mouse (Chaplain) on Nov 02, 2005 at 17:05 UTC | |
by graq (Curate) on Nov 03, 2005 at 10:36 UTC |