On Mon, 2004-03-08 at 22:51, manishankar pandey wrote: <snip> > Can u put some light on this error messege which is > happening when I am using #make(though the ver of gcc > is 3.3.2) > ------------------------------------------ > # make > cc -c -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -xO3 > -xdepend -DVERSION=\"3.00\" -DXS_VERSION=\"3.00\" > -KPIC -I/usr/perl5/5.6.1/lib/sun4-solaris-64int/CORE > Base64.c > cc: unrecognized option `-KPIC' > cc: language depend not recognized > cc: Base64.c: linker input file unused because linking > not done <snip>
Mani, You need to ensure that gcc is in your path before cc. Even though you have gcc installed it is finding cc first. You might want to also alias CC=gcc. Smitty _______________________________________________ Visit http://www.mimedefang.org and http://www.canit.ca MIMEDefang mailing list [EMAIL PROTECTED] http://lists.roaringpenguin.com/mailman/listinfo/mimedefang

