On Wed, Jun 27, 2007 at 10:41:38AM +1000, biplab de wrote: > Hi List, > > I have been trying to build the following DBI-1.58 Perl Module into my > solaris9 installation , but hitting the below problem when I try to do a > "make" , while the "perl Makelfile.pl" is running smooth. Anyone can help ? > If needed I can provide more details to debug the problem. > --------------------------------------------------------------- > # make > gcc -c -fno-strict-aliasing -pipe -Wdeclaration-after-statement > -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -O > -DVERSION=\"1.58\" -DXS_VERSION=\"1.58\" -fPIC > "-I/usr/local/lib/perl5/5.8.8/sun4-solaris/CORE" -W -Wall -Wpointer-arith > -Wbad-function-cast -Wno-comment -Wno-sign-compare -Wno-cast-qual > -Wmissing-noreturn -Wno-unused-parameter -DDBI_NO_THREADS Perl.c > cc1: error: unrecognized option `-Wdeclaration-after-statement'
The DBI doesn't add the -Wdeclaration-after-statement option so it must be coming from your perl configuration. That implies that you're building DBI with a different compiler than the one used to build perl. Tim. > > # perl -V details > Summary of my perl5 (revision 5 version 8 subversion 8) configuration: > Platform: > osname=solaris, osvers=2.9, archname=sun4-solaris > uname='sunos 5.9 generic sun4u sparc sunw,ultra-5_10 solaris ' > config_args='-Dcc=gcc' > hint=recommended, useposix=true, d_sigaction=define > usethreads=undef use5005threads=undef useithreads=undef > usemultiplicity=undef > useperlio=define d_sfio=undef uselargefiles=define usesocks=undef > use64bitint=undef use64bitall=undef uselongdouble=undef > usemymalloc=n, bincompat5005=undef > Compiler: > cc='gcc', ccflags ='-fno-strict-aliasing -pipe > -Wdeclaration-after-statement -I/usr/local/include -D_LARGEFILE_SOURCE > -D_FILE_OFFSET_BITS=64', > optimize='-O', > cppflags='-fno-strict-aliasing -pipe -Wdeclaration-after-statement > -I/usr/local/include' > ccversion='', gccversion='3.4.6', gccosandvers='solaris2.9' > intsize=4, longsize=4, ptrsize=4, doublesize=8, byteorder=4321 > d_longlong=define, longlongsize=8, d_longdbl=define, longdblsize=16 > ivtype='long', ivsize=4, nvtype='double', nvsize=8, Off_t='off_t', > lseeksize=8 > alignbytes=8, prototype=define > Linker and Libraries: > ld='gcc', ldflags =' -L/usr/local/lib ' > libpth=/usr/local/lib /usr/lib /usr/ccs/lib > libs=-lsocket -lnsl -ldb -ldl -lm -lc > perllibs=-lsocket -lnsl -ldl -lm -lc > libc=/lib/libc.so, so=so, useshrplib=false, libperl=libperl.a > gnulibc_version='' > Dynamic Linking: > dlsrc=dl_dlopen.xs, dlext=so, d_dlsymun=undef, ccdlflags=' ' > cccdlflags='-fPIC', lddlflags='-G -L/usr/local/lib' > > > Characteristics of this binary (from libperl): > Compile-time options: PERL_MALLOC_WRAP USE_LARGE_FILES USE_PERLIO > Built under solaris > Compiled at May 8 2007 03:46:29 > @INC: > /usr/local/lib/perl5/5.8.8/sun4-solaris > /usr/local/lib/perl5/5.8.8 > /usr/local/lib/perl5/site_perl/5.8.8/sun4-solaris > /usr/local/lib/perl5/site_perl/5.8.8 > /usr/local/lib/perl5/site_perl > .
