The problem looks like it's that you're running Sun make with gcc, and that can occasionally cause strangeness with makefiles expecting GNU make. You're getting Sun compiler flags passed to gcc, and it's barfing on them.
Using GNU make (which you may already have installed as "gmake") may give you better results. > On Wed, 10 May 2006, Michael Radzicki wrote: > > >I do not receive any errors when the configure script runs. However when > >I run make, I get the following error when make attempts to compile the > >check_mysql plugin: > > > > > > > >if gcc -DLOCALEDIR=\"/usr/local/nagios/share/locale\" -DHAVE_CONFIG_H > >-I. -I. -I.. -I.. -I../lib -I../intl -I/usr/local/ssl/include > >-I/opt/mysql/mysql/include -I/usr/local/ssl/include > >-I/opt/mysql/mysql/include -xO3 -mt -D_FORTEC_ -xarch=v8 -g -O2 -MT > >check_mysql-check_mysql.o -MD -MP -MF > >".deps/check_mysql-check_mysql.Tpo" -c -o check_mysql-check_mysql.o > >`test -f 'check_mysql.c' || echo './'`check_mysql.c; \ > > > >then mv -f ".deps/check_mysql-check_mysql.Tpo" > >".deps/check_mysql-check_mysql.Po"; else rm -f > >".deps/check_mysql-check_mysql.Tpo"; exit 1; fi > > > > > > > >gcc: language arch=v8 not recognized ------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ Nagios-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null
