--- ./ii_files/xosview.ii Thu Apr 24 08:25:56 2003 +++ ../xosview/./ii_files/xosview.ii Fri Apr 25 16:36:09 2003 @@ -1,3 +1,3 @@ -CMDLINE=CC -DEFAULT:abi=n32:isa=mips4:proc=r10k -mips3 -O2 -I. "-DXOSVIEW_VERSION=\"1.8.0\"" -I/scratch/xosview -I/scratch/xosview/irix65 -DHAVE_BOOL=1 "-DLONG_LONG=long long" -D_G_HAVE_BOOL=1 -DHAVE_SNPRINTF=1 -c -n32 xosview.cc -o xosview.o -PWD=/scratch/xosview +CMDLINE=/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/ptoolroot/usr/bin/CC -DEFAULT:abi=n32:isa=mips3:proc=r4k -O3 -OPT:Olimit=0:space=ON -DEBUG:optimize_space=on -TENV:X=1 -CG:unique_exit=on -OPT:IEEE_arithmetic=1:roundoff=0:wrap_around_unsafe_opt=off -n32 -mips3 -woff 1009,1014,1107,1110,1116,1164,1185,1188,1204,1230,1233 -Wl,-woff,85,-woff,84 -rpath /usr/freeware/lib32 -nostdinc -I. -I/scratch/compile/freeware/xosview/24.04.2003/xosview -I/scratch/compile/freeware/xosview/24.04.2003/xosview/irix65 -I. -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/include -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include/CC -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include -nostdlib -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/lib32 -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/lib32 -LANG:std "-DXOSVIEW_VERSION=\"1.8.0\"" -DHAVE_BOOL=1 "-DLONG_LONG=long long" -D_G_HAVE_BOOL=1 -DHAVE_SNPRINTF=1 -c xosview.cc -o xosview.o +PWD=/scratch/compile/freeware/xosview/24.04.2003/xosview ---- --- ./irix65/cpumeter.cc Mon Feb 25 13:39:00 2002 +++ ../xosview/./irix65/cpumeter.cc Fri Apr 25 16:10:33 2003 @@ -1,5 +1,5 @@ // -// $Id: cpumeter.cc,v 1.5 2002/02/24 21:31:02 romberg Exp $ +// $Id: cpumeter.cc,v 1.6 2003/04/25 14:09:44 eile Exp $ // Initial port performed by Stefan Eilemann (eile@sgi.com) // #include "cpumeter.h" @@ -94,20 +94,21 @@ const char *CPUMeter::cpuStr(int num) { static char buffer[32]; + const int nCPU = nCPUs(); - if( CPUMeter::countCPUs()==1 || num==-1 ) + if( nCPU==1 || num==-1 ) { snprintf(buffer, 32, "CPU"); } - else if( CPUMeter::countCPUs()<=10 ) + else if( nCPU<=10 ) { snprintf(buffer, 32, "#%d", num); } - else if ( CPUMeter::countCPUs()<=100 ) + else if ( nCPU<=100 ) { snprintf(buffer, 32, "#%02d", num); } - else if ( CPUMeter::countCPUs()<=1000 ) + else if ( nCPU<=1000 ) { snprintf(buffer, 32, "#%03d", num); } @@ -118,7 +119,7 @@ return buffer; } -int CPUMeter::countCPUs() +int CPUMeter::nCPUs() { return sysmp(MP_NPROCS); // FIXME: use NAPROCS + identify 'unused procs' } --- ./irix65/gfxmeter.h Thu Apr 24 08:15:21 2003 +++ ../xosview/./irix65/gfxmeter.h Fri Apr 25 16:10:33 2003 @@ -1,5 +1,5 @@ // -// $Id: gfxmeter.h,v 1.4 2003/04/24 06:15:21 eile Exp $ +// $Id: gfxmeter.h,v 1.5 2003/04/25 14:09:44 eile Exp $ // Initial port performed by Stefan Eilemann (eile@sgi.com) // @@ -10,24 +10,26 @@ #include -class GfxMeter : public FieldMeterGraph { - public: - GfxMeter(XOSView *parent, int max); - ~GfxMeter(void); - - const char *name(void) const { return "GfxMeter"; } - void checkevent(void); - - void checkResources(void); +class GfxMeter : public FieldMeterGraph +{ +public: + GfxMeter(XOSView *parent, int max); + ~GfxMeter(void); + + const char *name(void) const { return "GfxMeter"; } + void checkevent(void); + + void checkResources(void); + static int nPipes( void ); protected: void getgfxinfo(void); unsigned long swapgfxcol_, warngfxcol_, critgfxcol_; - + private: int warnThreshold, critThreshold, alarmstate, lastalarmstate; - int nPipes; + int _nPipes; }; #endif --- ./irix65/cpumeter.h Fri Dec 14 12:29:26 2001 +++ ../xosview/./irix65/cpumeter.h Fri Apr 25 16:10:33 2003 @@ -1,5 +1,5 @@ // -// $Id: cpumeter.h,v 1.2 2001/10/17 14:03:55 eile Exp $ +// $Id: cpumeter.h,v 1.3 2003/04/25 14:09:44 eile Exp $ // Initial port performed by Stefan Eilemann (eile@sgi.com) // #ifndef _CPUMETER_H_ @@ -23,7 +23,7 @@ void checkResources(void); - static int countCPUs(); + static int nCPUs(); static const char *cpuStr(int num); protected: --- ./irix65/MeterMaker.cc Thu Apr 24 08:15:19 2003 +++ ../xosview/./irix65/MeterMaker.cc Fri Apr 25 16:10:33 2003 @@ -1,5 +1,5 @@ // -// $Id: MeterMaker.cc,v 1.7 2003/04/24 06:15:19 eile Exp $ +// $Id: MeterMaker.cc,v 1.8 2003/04/25 14:09:44 eile Exp $ // Initial port performed by Stefan Eilemann (eile@sgi.com) // #include "MeterMaker.h" @@ -30,14 +30,14 @@ // Standard meters (usually added, but users could turn them off) if (_xos->isResourceTrue("cpu")) { - bool any = 0; - int cpuCount = CPUMeter::countCPUs(); + bool any = false; + const int cpuCount = CPUMeter::nCPUs(); if( strncmp( _xos->getResource("cpuFormat"), "single", 2) == 0 || strncmp( _xos->getResource("cpuFormat"), "both", 2) == 0 ) { push(new CPUMeter(_xos, -1)); - any = 1; + any = true; } if( strncmp( _xos->getResource("cpuFormat"), "all", 2) == 0 || @@ -45,7 +45,7 @@ { for (int i = 0 ; i < cpuCount ; i++) push(new CPUMeter(_xos, i)); - any = 1; + any = true; } if( strncmp( _xos->getResource("cpuFormat"), "auto", 2) == 0 ) @@ -55,12 +55,11 @@ if( cpuCount>1 ) for (int i = 0 ; i < cpuCount ; i++) push(new CPUMeter(_xos, i)); - any = 1; + any = true; } if( !any ) { - int cpuCount = CPUMeter::countCPUs(); for (int i = 0 ; i < cpuCount ; i++) push(new CPUMeter(_xos, i)); } @@ -68,7 +67,7 @@ } - if (_xos->isResourceTrue("gfx")) + if( _xos->isResourceTrue("gfx") && GfxMeter::nPipes() > 0 ) push(new GfxMeter( _xos, atoi( _xos->getResource( "gfxWarnThreshold" )))); #if 0 // eile: not yet working --- ./irix65/gfxmeter.cc Thu Apr 24 08:15:20 2003 +++ ../xosview/./irix65/gfxmeter.cc Fri Apr 25 16:10:33 2003 @@ -1,5 +1,5 @@ // -// $Id: gfxmeter.cc,v 1.3 2003/04/24 06:15:20 eile Exp $ +// $Id: gfxmeter.cc,v 1.4 2003/04/25 14:09:44 eile Exp $ // Initial port performed by Stefan Eilemann (eile@sgi.com) // @@ -15,21 +15,10 @@ GfxMeter::GfxMeter(XOSView *parent, int max) : FieldMeterGraph(parent, 2, "GFX","SWAPBUF/S", 1, 1, 0 ) { - inventory_t *inv; - lastalarmstate = -1; total_ = 0; - nPipes = 0; - - setinvent(); - for( inv = getinvent(); inv != NULL; inv = getinvent() ) - { - if ( inv->inv_class==INV_GRAPHICS ) - { - nPipes++; - } - } - total_ = nPipes * max; + _nPipes = nPipes(); + total_ = _nPipes * max; if ( total_==0 ) { parent_->done(1); @@ -41,6 +30,21 @@ { } +int GfxMeter::nPipes(void) +{ + int _nPipes = 0; + + setinvent(); + for( inventory_t *inv = getinvent(); inv != NULL; inv = getinvent() ) + { + if ( inv->inv_class==INV_GRAPHICS ) + { + _nPipes++; + } + } + return _nPipes; +} + void GfxMeter::checkResources(void) { FieldMeterGraph::checkResources(); @@ -56,8 +60,8 @@ dodecay_ = parent_->isResourceTrue( "gfxDecay" ); SetUsedFormat(parent_->getResource("gfxUsedFormat")); - warnThreshold = atoi (parent_->getResource("gfxWarnThreshold")) * nPipes; - critThreshold = atoi (parent_->getResource("gfxCritThreshold")) * nPipes; + warnThreshold = atoi (parent_->getResource("gfxWarnThreshold")) * _nPipes; + critThreshold = atoi (parent_->getResource("gfxCritThreshold")) * _nPipes; if (dodecay_){ // Warning: Since the gfxmeter changes scale occasionally, old --- ./irix65/ii_files/MeterMaker.ii Thu Apr 24 08:25:58 2003 +++ ../xosview/./irix65/ii_files/MeterMaker.ii Fri Apr 25 16:33:07 2003 @@ -1,3 +1,3 @@ -CMDLINE=CC -DEFAULT:abi=n32:isa=mips4:proc=r10k -mips3 -O2 -I. "-DXOSVIEW_VERSION=\"1.8.0\"" -I/scratch/xosview -I/scratch/xosview/irix65 -DHAVE_BOOL=1 "-DLONG_LONG=long long" -D_G_HAVE_BOOL=1 -DHAVE_SNPRINTF=1 -I.. -c -n32 MeterMaker.cc -o MeterMaker.o -PWD=/scratch/xosview/irix65 +CMDLINE=/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/ptoolroot/usr/bin/CC -DEFAULT:abi=n32:isa=mips3:proc=r4k -O3 -OPT:Olimit=0:space=ON -DEBUG:optimize_space=on -TENV:X=1 -CG:unique_exit=on -OPT:IEEE_arithmetic=1:roundoff=0:wrap_around_unsafe_opt=off -n32 -mips3 -woff 1009,1014,1107,1110,1116,1164,1185,1188,1204,1230,1233 -Wl,-woff,85,-woff,84 -rpath /usr/freeware/lib32 -nostdinc -I. -I/scratch/compile/freeware/xosview/24.04.2003/xosview -I/scratch/compile/freeware/xosview/24.04.2003/xosview/irix65 -I.. -I. -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/include -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include/CC -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include -nostdlib -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/lib32 -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/lib32 -LANG:std "-DXOSVIEW_VERSION=\"1.8.0\"" -DHAVE_BOOL=1 "-DLONG_LONG=long long" -D_G_HAVE_BOOL=1 -DHAVE_SNPRINTF=1 -c MeterMaker.cc -o MeterMaker.o +PWD=/scratch/compile/freeware/xosview/24.04.2003/xosview/irix65 ---- --- ./irix65/Makefile Thu Apr 24 08:25:49 2003 +++ ../xosview/./irix65/Makefile Fri Apr 25 16:30:51 2003 @@ -35,6 +35,6 @@ libmeter.a : $(OBJS) ar cvr libmeter.a $(OBJS) - ranlib $@ + : $@ --- ./README.irix Wed Feb 20 12:15:03 2002 +++ ../xosview/./README.irix Fri Apr 25 16:25:36 2003 @@ -13,13 +13,16 @@ - mem meter - - gfx meter: Displays swapbuffers/second. It is forking - /usr/lib/sa/sadc to read system accounting data. + - gfx meter: Displays swapbuffers/second. - Of course, you're welcome to send me patches. - I experienced some errors with the cpu meter on O2. + For the gfx meter, sadc is forked to read the activity. The sadc + process is handled from the singleton SarMeter, which reads the binary + data from sadc and converts it into structures. Currently, it parses + gfxinfo and diskinfo data. The diskinfo can be used to create a disk + meter, but I do not have the time currently. As said above, send me + patches ;). It is tested on: @@ -27,6 +30,6 @@ IP20, IP22, IP27, IP30, IP32 and IP35. - Stefan Eilemann, Feb 02 eile@sgi.com + Stefan Eilemann, Apr 03 eile@sgi.com - $Id: README.irix,v 1.2 2002/02/20 11:15:03 eile Exp $ + $Id: README.irix,v 1.3 2003/04/25 14:25:10 eile Exp $ --- ./config.status Thu Apr 24 08:25:49 2003 +++ ../xosview/./config.status Fri Apr 25 16:30:22 2003 @@ -95,7 +95,7 @@ ac_cs_version="\ config.status configured by ./configure, generated by GNU Autoconf 2.52, - with options \" CC=cc CFLAGS=-mips3 CXX=CC LDFLAGS=-mips3\" + with options \"--prefix=/usr/freeware --libdir=/usr/freeware/lib32 'CC=sgifwcompile -e -q -nostdinc -I. -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/include -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include -O3 -OPT:Olimit=0:space=ON -DEBUG:optimize_space=on -TENV:X=1 -CG:unique_exit=on -OPT:IEEE_arithmetic=1:roundoff=0:wrap_around_unsafe_opt=off -n32 -mips3 -nostdlib -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/lib32 -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/lib32 -woff 1009,1014,1107,1110,1116,1164,1185,1188,1204,1230,1233 -Wl,-woff,85,-woff,84 -rpath /usr/freeware/lib32 -- /hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/ptoolroot/usr/bin/cc' CFLAGS=-mips3 'CXX=sgifwcompile -e -q -nostdinc -I. -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/include -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include/CC -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include -O3 -OPT:Olimit=0:space=ON -DEBUG:optimize_space=on -TENV:X=1 -CG:unique_exit=on -OPT:IEEE_arithmetic=1:roundoff=0:wrap_around_unsafe_opt=off -n32 -mips3 -nostdlib -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/lib32 -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/lib32 -woff 1009,1014,1107,1110,1116,1164,1185,1188,1204,1230,1233 -Wl,-woff,85,-woff,84 -rpath /usr/freeware/lib32 -LANG:std -- /hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/ptoolroot/usr/bin/CC' LDFLAGS=-mips3\" Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001 Free Software Foundation, Inc. @@ -102,7 +102,7 @@ This config.status script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it." srcdir=. -INSTALL="/usr/freeware/bin/install -c" +INSTALL="install" # If no file are specified by the user, then we need to provide default # value. By we need to know if files were specified by the user. ac_need_defaults=: @@ -125,8 +125,8 @@ case $1 in # Handling of the options. -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) - echo "running /bin/sh ./configure " CC=cc CFLAGS=-mips3 CXX=CC LDFLAGS=-mips3 " --no-create --no-recursion" - exec /bin/sh ./configure CC=cc CFLAGS=-mips3 CXX=CC LDFLAGS=-mips3 --no-create --no-recursion ;; + echo "running /bin/sh ./configure " --prefix=/usr/freeware --libdir=/usr/freeware/lib32 'CC=sgifwcompile -e -q -nostdinc -I. -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/include -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include -O3 -OPT:Olimit=0:space=ON -DEBUG:optimize_space=on -TENV:X=1 -CG:unique_exit=on -OPT:IEEE_arithmetic=1:roundoff=0:wrap_around_unsafe_opt=off -n32 -mips3 -nostdlib -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/lib32 -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/lib32 -woff 1009,1014,1107,1110,1116,1164,1185,1188,1204,1230,1233 -Wl,-woff,85,-woff,84 -rpath /usr/freeware/lib32 -- /hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/ptoolroot/usr/bin/cc' CFLAGS=-mips3 'CXX=sgifwcompile -e -q -nostdinc -I. -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/include -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include/CC -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include -O3 -OPT:Olimit=0:space=ON -DEBUG:optimize_space=on -TENV:X=1 -CG:unique_exit=on -OPT:IEEE_arithmetic=1:roundoff=0:wrap_around_unsafe_opt=off -n32 -mips3 -nostdlib -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/lib32 -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/lib32 -woff 1009,1014,1107,1110,1116,1164,1185,1188,1204,1230,1233 -Wl,-woff,85,-woff,84 -rpath /usr/freeware/lib32 -LANG:std -- /hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/ptoolroot/usr/bin/CC' LDFLAGS=-mips3 " --no-create --no-recursion" + exec /bin/sh ./configure --prefix=/usr/freeware --libdir=/usr/freeware/lib32 'CC=sgifwcompile -e -q -nostdinc -I. -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/include -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include -O3 -OPT:Olimit=0:space=ON -DEBUG:optimize_space=on -TENV:X=1 -CG:unique_exit=on -OPT:IEEE_arithmetic=1:roundoff=0:wrap_around_unsafe_opt=off -n32 -mips3 -nostdlib -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/lib32 -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/lib32 -woff 1009,1014,1107,1110,1116,1164,1185,1188,1204,1230,1233 -Wl,-woff,85,-woff,84 -rpath /usr/freeware/lib32 -- /hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/ptoolroot/usr/bin/cc' CFLAGS=-mips3 'CXX=sgifwcompile -e -q -nostdinc -I. -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/include -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include/CC -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include -O3 -OPT:Olimit=0:space=ON -DEBUG:optimize_space=on -TENV:X=1 -CG:unique_exit=on -OPT:IEEE_arithmetic=1:roundoff=0:wrap_around_unsafe_opt=off -n32 -mips3 -nostdlib -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/lib32 -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/lib32 -woff 1009,1014,1107,1110,1116,1164,1185,1188,1204,1230,1233 -Wl,-woff,85,-woff,84 -rpath /usr/freeware/lib32 -LANG:std -- /hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/ptoolroot/usr/bin/CC' LDFLAGS=-mips3 --no-create --no-recursion ;; --version | --vers* | -V ) echo "$ac_cs_version"; exit 0 ;; --he | --h) @@ -237,7 +237,7 @@ s/@@/,@/; s/@@/@,/; s/@;t t$/,;t t/' >$tmp/subs.sed <<\CEOF s,@SHELL@,/bin/sh,;t t s,@exec_prefix@,${prefix},;t t -s,@prefix@,/usr/X11R6,;t t +s,@prefix@,/usr/freeware,;t t s,@program_transform_name@,s,x,x,,;t t s,@bindir@,${exec_prefix}/bin,;t t s,@sbindir@,${exec_prefix}/sbin,;t t @@ -246,7 +246,7 @@ s,@sysconfdir@,${prefix}/etc,;t t s,@sharedstatedir@,${prefix}/com,;t t s,@localstatedir@,${prefix}/var,;t t -s,@libdir@,${exec_prefix}/lib,;t t +s,@libdir@,/usr/freeware/lib32,;t t s,@includedir@,${prefix}/include,;t t s,@oldincludedir@,/usr/include,;t t s,@infodir@,${prefix}/info,;t t @@ -265,7 +265,7 @@ s,@PATH_SEPARATOR@,:,;t t s,@DEFS@,-DHAVE_BOOL=1 -DLONG_LONG=long\ long -D_G_HAVE_BOOL=1 -DHAVE_SNPRINTF=1 ,;t t s,@LIBS@,-L -R ,;t t -s,@TOP_SRCDIR@,/scratch/xosview,;t t +s,@TOP_SRCDIR@,/scratch/compile/freeware/xosview/24.04.2003/xosview,;t t s,@build@,mips-sgi-irix6.5,;t t s,@build_cpu@,mips,;t t s,@build_vendor@,sgi,;t t @@ -274,7 +274,7 @@ s,@host_cpu@,mips,;t t s,@host_vendor@,sgi,;t t s,@host_os@,irix65,;t t -s,@CXX@,CC,;t t +s,@CXX@,sgifwcompile -e -q -nostdinc -I. -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/include -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include/CC -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include -O3 -OPT:Olimit=0:space=ON -DEBUG:optimize_space=on -TENV:X=1 -CG:unique_exit=on -OPT:IEEE_arithmetic=1:roundoff=0:wrap_around_unsafe_opt=off -n32 -mips3 -nostdlib -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/lib32 -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/lib32 -woff 1009,1014,1107,1110,1116,1164,1185,1188,1204,1230,1233 -Wl,-woff,85,-woff,84 -rpath /usr/freeware/lib32 -LANG:std -- /hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/ptoolroot/usr/bin/CC,;t t s,@CXXFLAGS@,-g -I,;t t s,@LDFLAGS@,-mips3,;t t s,@CPPFLAGS@,-I /usr/X11R6/include,;t t @@ -281,10 +281,10 @@ s,@ac_ct_CXX@,,;t t s,@EXEEXT@,,;t t s,@OBJEXT@,o,;t t -s,@CC@,cc,;t t +s,@CC@,sgifwcompile -e -q -nostdinc -I. -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/include -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include -O3 -OPT:Olimit=0:space=ON -DEBUG:optimize_space=on -TENV:X=1 -CG:unique_exit=on -OPT:IEEE_arithmetic=1:roundoff=0:wrap_around_unsafe_opt=off -n32 -mips3 -nostdlib -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/lib32 -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/lib32 -woff 1009,1014,1107,1110,1116,1164,1185,1188,1204,1230,1233 -Wl,-woff,85,-woff,84 -rpath /usr/freeware/lib32 -- /hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/ptoolroot/usr/bin/cc,;t t s,@CFLAGS@,-mips3,;t t -s,@ac_ct_CC@,cc,;t t -s,@CPP@,cc -E,;t t +s,@ac_ct_CC@,sgifwcompile -e -q -nostdinc -I. -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/include -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include -O3 -OPT:Olimit=0:space=ON -DEBUG:optimize_space=on -TENV:X=1 -CG:unique_exit=on -OPT:IEEE_arithmetic=1:roundoff=0:wrap_around_unsafe_opt=off -n32 -mips3 -nostdlib -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/lib32 -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/lib32 -woff 1009,1014,1107,1110,1116,1164,1185,1188,1204,1230,1233 -Wl,-woff,85,-woff,84 -rpath /usr/freeware/lib32 -- /hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/ptoolroot/usr/bin/cc,;t t +s,@CPP@,sgifwcompile -e -q -nostdinc -I. -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/include -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include -O3 -OPT:Olimit=0:space=ON -DEBUG:optimize_space=on -TENV:X=1 -CG:unique_exit=on -OPT:IEEE_arithmetic=1:roundoff=0:wrap_around_unsafe_opt=off -n32 -mips3 -nostdlib -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/lib32 -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/lib32 -woff 1009,1014,1107,1110,1116,1164,1185,1188,1204,1230,1233 -Wl,-woff,85,-woff,84 -rpath /usr/freeware/lib32 -- /hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/ptoolroot/usr/bin/cc -E,;t t s,@x_includes@,.,;t t s,@x_libraries@,.,;t t s,@INSTALL_PROGRAM@,${INSTALL},;t t @@ -291,8 +291,8 @@ s,@INSTALL_SCRIPT@,${INSTALL},;t t s,@INSTALL_DATA@,${INSTALL} -m 644,;t t s,@AWK@,gawk,;t t -s,@RANLIB@,ranlib,;t t -s,@ac_ct_RANLIB@,ranlib,;t t +s,@RANLIB@,:,;t t +s,@ac_ct_RANLIB@,:,;t t s,@AUTODEPRULE@,\ ## Autodepend rule defaults to disabled.\ #-include Makefile.GNU.autodep,;t t --- ./config.log Thu Apr 24 08:26:06 2003 +++ ../xosview/./config.log Fri Apr 25 16:31:00 2003 @@ -4,7 +4,7 @@ It was created by configure, which was generated by GNU Autoconf 2.52. Invocation command line was - $ ./configure + $ ./configure --prefix=/usr/freeware --libdir=/usr/freeware/lib32 ## ---------- ## ## Platform. ## @@ -11,9 +11,9 @@ ## ---------- ## hostname = mathom.neu.sgi.com -uname -m = IP30 +uname -m = IP22 uname -r = 6.5 -uname -s = IRIX64 +uname -s = IRIX uname -v = 10151453 /usr/bin/uname -p = mips @@ -27,7 +27,7 @@ /usr/bin/oslevel = unknown /bin/universe = unknown -PATH = /usr/local/bin:/usr/freeware/bin:~/local/bin:/usr/local/bin:/usr/freeware/bin:~/local/bin:/usr/sbin:/usr/bsd:/sbin:/usr/bin:/usr/bin/X11::/hosts/mathom.neu/usr/freeware/bin:/usr/local/bin/ptools:/usr/java/bin:/usr/freeware/bin:/home/engr/eile/local/bin:/hosts/mathom.neu/usr/freeware/bin:/hosts/mathom.neu/usr/local/bin:/usr/freeware/bin:/home/engr/eile/local/bin:/hosts/mathom.neu/usr/freeware/bin:/hosts/mathom.neu/usr/freeware/bin:/usr/local/bin/ptools:/usr/java/bin +PATH = /hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/ptoolroot/usr/fw_tools:/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/bin:/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/ptoolroot/usr/fw_tools:/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/ptoolroot/sbin:/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/ptoolroot/bin:/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/ptoolroot/usr/sbin:/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/ptoolroot/usr/bin:/usr/local/bin/ptools:/usr/local/bin:/usr/freeware/bin:~/local/bin:/usr/local/bin:/usr/freeware/bin:~/local/bin:/usr/sbin:/usr/bsd:/sbin:/usr/bin:/usr/bin/X11::/hosts/mathom.neu/usr/freeware/bin:/usr/local/bin/ptools:/usr/java/bin:/usr/freeware/bin:/home/engr/eile/local/bin:/hosts/mathom.neu/usr/freeware/bin:/hosts/mathom.neu/usr/local/bin:/usr/freeware/bin:/home/engr/eile/local/bin:/hosts/mathom.neu/usr/freeware/bin:/hosts/mathom.neu/usr/freeware/bin:/usr/local/bin/ptools:/usr/java/bin ## ------------ ## ## Core tests. ## @@ -41,20 +41,355 @@ configure:1010: checking host system type configure:1024: result: mips-sgi-irix6.5 configure:1118: checking for C++ compiler version -configure:1121: CC --version &5 +configure:1121: sgifwcompile -e -q -nostdinc -I. -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/include -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include/CC -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include -O3 -OPT:Olimit=0:space=ON -DEBUG:optimize_space=on -TENV:X=1 -CG:unique_exit=on -OPT:IEEE_arithmetic=1:roundoff=0:wrap_around_unsafe_opt=off -n32 -mips3 -nostdlib -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/lib32 -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/lib32 -woff 1009,1014,1107,1110,1116,1164,1185,1188,1204,1230,1233 -Wl,-woff,85,-woff,84 -rpath /usr/freeware/lib32 -LANG:std -- /hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/ptoolroot/usr/bin/CC --version &5 CC ERROR: -- not allowed in non XPG4 environment CC ERROR parsing --version: unknown flag CC ERROR: no source or object file given configure:1124: $? = 2 -configure:1126: CC -v &5 +configure:1126: sgifwcompile -e -q -nostdinc -I. -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/include -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include/CC -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include -O3 -OPT:Olimit=0:space=ON -DEBUG:optimize_space=on -TENV:X=1 -CG:unique_exit=on -OPT:IEEE_arithmetic=1:roundoff=0:wrap_around_unsafe_opt=off -n32 -mips3 -nostdlib -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/lib32 -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/lib32 -woff 1009,1014,1107,1110,1116,1164,1185,1188,1204,1230,1233 -Wl,-woff,85,-woff,84 -rpath /usr/freeware/lib32 -LANG:std -- /hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/ptoolroot/usr/bin/CC -v &5 +CC WARNING: -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/include does not refer to a valid directory +CC WARNING: -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/lib32 does not refer to a valid directory CC ERROR: no source or object file given configure:1129: $? = 2 -configure:1131: CC -V &5 +configure:1131: sgifwcompile -e -q -nostdinc -I. -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/include -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include/CC -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include -O3 -OPT:Olimit=0:space=ON -DEBUG:optimize_space=on -TENV:X=1 -CG:unique_exit=on -OPT:IEEE_arithmetic=1:roundoff=0:wrap_around_unsafe_opt=off -n32 -mips3 -nostdlib -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/lib32 -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/lib32 -woff 1009,1014,1107,1110,1116,1164,1185,1188,1204,1230,1233 -Wl,-woff,85,-woff,84 -rpath /usr/freeware/lib32 -LANG:std -- /hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/ptoolroot/usr/bin/CC -V &5 CC WARNING: -V is ignored CC ERROR: no source or object file given configure:1134: $? = 2 configure:1154: checking for C++ compiler default output -configure:1157: CC -mips3 conftest.cc >&5 +configure:1157: sgifwcompile -e -q -nostdinc -I. -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/include -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include/CC -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include -O3 -OPT:Olimit=0:space=ON -DEBUG:optimize_space=on -TENV:X=1 -CG:unique_exit=on -OPT:IEEE_arithmetic=1:roundoff=0:wrap_around_unsafe_opt=off -n32 -mips3 -nostdlib -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/lib32 -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/lib32 -woff 1009,1014,1107,1110,1116,1164,1185,1188,1204,1230,1233 -Wl,-woff,85,-woff,84 -rpath /usr/freeware/lib32 -LANG:std -- /hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/ptoolroot/usr/bin/CC -mips3 conftest.cc >&5 +configure:1160: $? = 0 +configure:1189: result: a.out +configure:1194: checking whether the C++ compiler works +configure:1200: ./a.out +configure:1203: $? = 0 +configure:1218: result: yes +configure:1225: checking whether we are cross compiling +configure:1227: result: no +configure:1230: checking for executable suffix +configure:1232: sgifwcompile -e -q -nostdinc -I. -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/include -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include/CC -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include -O3 -OPT:Olimit=0:space=ON -DEBUG:optimize_space=on -TENV:X=1 -CG:unique_exit=on -OPT:IEEE_arithmetic=1:roundoff=0:wrap_around_unsafe_opt=off -n32 -mips3 -nostdlib -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/lib32 -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/lib32 -woff 1009,1014,1107,1110,1116,1164,1185,1188,1204,1230,1233 -Wl,-woff,85,-woff,84 -rpath /usr/freeware/lib32 -LANG:std -- /hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/ptoolroot/usr/bin/CC -o conftest -mips3 conftest.cc >&5 +configure:1235: $? = 0 +configure:1257: result: +configure:1263: checking for object suffix +configure:1281: sgifwcompile -e -q -nostdinc -I. -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/include -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include/CC -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include -O3 -OPT:Olimit=0:space=ON -DEBUG:optimize_space=on -TENV:X=1 -CG:unique_exit=on -OPT:IEEE_arithmetic=1:roundoff=0:wrap_around_unsafe_opt=off -n32 -mips3 -nostdlib -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/lib32 -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/lib32 -woff 1009,1014,1107,1110,1116,1164,1185,1188,1204,1230,1233 -Wl,-woff,85,-woff,84 -rpath /usr/freeware/lib32 -LANG:std -- /hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/ptoolroot/usr/bin/CC -c conftest.cc >&5 +configure:1284: $? = 0 +configure:1303: result: o +configure:1307: checking whether we are using the GNU C++ compiler +configure:1328: sgifwcompile -e -q -nostdinc -I. -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/include -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include/CC -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include -O3 -OPT:Olimit=0:space=ON -DEBUG:optimize_space=on -TENV:X=1 -CG:unique_exit=on -OPT:IEEE_arithmetic=1:roundoff=0:wrap_around_unsafe_opt=off -n32 -mips3 -nostdlib -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/lib32 -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/lib32 -woff 1009,1014,1107,1110,1116,1164,1185,1188,1204,1230,1233 -Wl,-woff,85,-woff,84 -rpath /usr/freeware/lib32 -LANG:std -- /hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/ptoolroot/usr/bin/CC -c conftest.cc >&5 +cc-1020 CC: ERROR File = configure, Line = 1319 + The identifier "choke" is undefined. + + choke me + ^ + +cc-1174 CC: WARNING File = configure, Line = 1319 + The variable "me" was declared but never referenced. + + choke me + ^ + +1 error detected in the compilation of "conftest.cc". +configure:1331: $? = 2 +configure: failed program was: +#line 1313 "configure" +#include "confdefs.h" + +int +main () +{ +#ifndef __GNUC__ + choke me +#endif + + ; + return 0; +} +configure:1349: result: no +configure:1355: checking whether sgifwcompile -e -q -nostdinc -I. -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/include -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include/CC -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include -O3 -OPT:Olimit=0:space=ON -DEBUG:optimize_space=on -TENV:X=1 -CG:unique_exit=on -OPT:IEEE_arithmetic=1:roundoff=0:wrap_around_unsafe_opt=off -n32 -mips3 -nostdlib -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/lib32 -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/lib32 -woff 1009,1014,1107,1110,1116,1164,1185,1188,1204,1230,1233 -Wl,-woff,85,-woff,84 -rpath /usr/freeware/lib32 -LANG:std -- /hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/ptoolroot/usr/bin/CC accepts -g +configure:1373: sgifwcompile -e -q -nostdinc -I. -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/include -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include/CC -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include -O3 -OPT:Olimit=0:space=ON -DEBUG:optimize_space=on -TENV:X=1 -CG:unique_exit=on -OPT:IEEE_arithmetic=1:roundoff=0:wrap_around_unsafe_opt=off -n32 -mips3 -nostdlib -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/lib32 -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/lib32 -woff 1009,1014,1107,1110,1116,1164,1185,1188,1204,1230,1233 -Wl,-woff,85,-woff,84 -rpath /usr/freeware/lib32 -LANG:std -- /hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/ptoolroot/usr/bin/CC -c -g conftest.cc >&5 +configure:1376: $? = 0 +configure:1379: test -s conftest.o +configure:1382: $? = 0 +configure:1392: result: yes +configure:1432: sgifwcompile -e -q -nostdinc -I. -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/include -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include/CC -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include -O3 -OPT:Olimit=0:space=ON -DEBUG:optimize_space=on -TENV:X=1 -CG:unique_exit=on -OPT:IEEE_arithmetic=1:roundoff=0:wrap_around_unsafe_opt=off -n32 -mips3 -nostdlib -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/lib32 -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/lib32 -woff 1009,1014,1107,1110,1116,1164,1185,1188,1204,1230,1233 -Wl,-woff,85,-woff,84 -rpath /usr/freeware/lib32 -LANG:std -- /hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/ptoolroot/usr/bin/CC -c -g conftest.cc >&5 +configure:1435: $? = 0 +configure:1438: test -s conftest.o +configure:1441: $? = 0 +configure:1463: sgifwcompile -e -q -nostdinc -I. -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/include -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include/CC -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include -O3 -OPT:Olimit=0:space=ON -DEBUG:optimize_space=on -TENV:X=1 -CG:unique_exit=on -OPT:IEEE_arithmetic=1:roundoff=0:wrap_around_unsafe_opt=off -n32 -mips3 -nostdlib -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/lib32 -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/lib32 -woff 1009,1014,1107,1110,1116,1164,1185,1188,1204,1230,1233 -Wl,-woff,85,-woff,84 -rpath /usr/freeware/lib32 -LANG:std -- /hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/ptoolroot/usr/bin/CC -c -g conftest.cc >&5 +cc-1020 CC: ERROR File = configure, Line = 1456 + The identifier "exit" is undefined. + + exit (42); + ^ + +1 error detected in the compilation of "conftest.cc". +configure:1466: $? = 2 +configure: failed program was: +#line 1451 "configure" +#include "confdefs.h" + +int +main () +{ +exit (42); + ; + return 0; +} +configure:1432: sgifwcompile -e -q -nostdinc -I. -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/include -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include/CC -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include -O3 -OPT:Olimit=0:space=ON -DEBUG:optimize_space=on -TENV:X=1 -CG:unique_exit=on -OPT:IEEE_arithmetic=1:roundoff=0:wrap_around_unsafe_opt=off -n32 -mips3 -nostdlib -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/lib32 -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/lib32 -woff 1009,1014,1107,1110,1116,1164,1185,1188,1204,1230,1233 -Wl,-woff,85,-woff,84 -rpath /usr/freeware/lib32 -LANG:std -- /hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/ptoolroot/usr/bin/CC -c -g conftest.cc >&5 +configure:1435: $? = 0 +configure:1438: test -s conftest.o +configure:1441: $? = 0 +configure:1463: sgifwcompile -e -q -nostdinc -I. -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/include -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include/CC -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include -O3 -OPT:Olimit=0:space=ON -DEBUG:optimize_space=on -TENV:X=1 -CG:unique_exit=on -OPT:IEEE_arithmetic=1:roundoff=0:wrap_around_unsafe_opt=off -n32 -mips3 -nostdlib -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/lib32 -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/lib32 -woff 1009,1014,1107,1110,1116,1164,1185,1188,1204,1230,1233 -Wl,-woff,85,-woff,84 -rpath /usr/freeware/lib32 -LANG:std -- /hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/ptoolroot/usr/bin/CC -c -g conftest.cc >&5 +configure:1466: $? = 0 +configure:1469: test -s conftest.o +configure:1472: $? = 0 +configure:1494: checking whether sgifwcompile -e -q -nostdinc -I. -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/include -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include/CC -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include -O3 -OPT:Olimit=0:space=ON -DEBUG:optimize_space=on -TENV:X=1 -CG:unique_exit=on -OPT:IEEE_arithmetic=1:roundoff=0:wrap_around_unsafe_opt=off -n32 -mips3 -nostdlib -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/lib32 -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/lib32 -woff 1009,1014,1107,1110,1116,1164,1185,1188,1204,1230,1233 -Wl,-woff,85,-woff,84 -rpath /usr/freeware/lib32 -LANG:std -- /hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/ptoolroot/usr/bin/CC supports bool types +configure:1519: sgifwcompile -e -q -nostdinc -I. -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/include -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include/CC -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include -O3 -OPT:Olimit=0:space=ON -DEBUG:optimize_space=on -TENV:X=1 -CG:unique_exit=on -OPT:IEEE_arithmetic=1:roundoff=0:wrap_around_unsafe_opt=off -n32 -mips3 -nostdlib -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/lib32 -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/lib32 -woff 1009,1014,1107,1110,1116,1164,1185,1188,1204,1230,1233 -Wl,-woff,85,-woff,84 -rpath /usr/freeware/lib32 -LANG:std -- /hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/ptoolroot/usr/bin/CC -c -g conftest.cc >&5 +cc-1174 CC: WARNING File = configure, Line = 1512 + The variable "b" was declared but never referenced. + + bool b = true; + ^ + +configure:1522: $? = 0 +configure:1525: test -s conftest.o +configure:1528: $? = 0 +configure:1545: result: yes +configure:1554: checking whether sgifwcompile -e -q -nostdinc -I. -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/include -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include/CC -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include -O3 -OPT:Olimit=0:space=ON -DEBUG:optimize_space=on -TENV:X=1 -CG:unique_exit=on -OPT:IEEE_arithmetic=1:roundoff=0:wrap_around_unsafe_opt=off -n32 -mips3 -nostdlib -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/lib32 -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/lib32 -woff 1009,1014,1107,1110,1116,1164,1185,1188,1204,1230,1233 -Wl,-woff,85,-woff,84 -rpath /usr/freeware/lib32 -LANG:std -- /hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/ptoolroot/usr/bin/CC supports long long types +configure:1579: sgifwcompile -e -q -nostdinc -I. -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/include -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include/CC -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include -O3 -OPT:Olimit=0:space=ON -DEBUG:optimize_space=on -TENV:X=1 -CG:unique_exit=on -OPT:IEEE_arithmetic=1:roundoff=0:wrap_around_unsafe_opt=off -n32 -mips3 -nostdlib -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/lib32 -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/lib32 -woff 1009,1014,1107,1110,1116,1164,1185,1188,1204,1230,1233 -Wl,-woff,85,-woff,84 -rpath /usr/freeware/lib32 -LANG:std -- /hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/ptoolroot/usr/bin/CC -c -g conftest.cc >&5 +cc-1552 CC: WARNING File = configure, Line = 1572 + The variable "x" is set but never used. + + long long x; x = (long long)0; + ^ + +configure:1582: $? = 0 +configure:1585: test -s conftest.o +configure:1588: $? = 0 +configure:1605: result: yes +configure:1662: checking for gcc +configure:1685: result: sgifwcompile -e -q -nostdinc -I. -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/include -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include -O3 -OPT:Olimit=0:space=ON -DEBUG:optimize_space=on -TENV:X=1 -CG:unique_exit=on -OPT:IEEE_arithmetic=1:roundoff=0:wrap_around_unsafe_opt=off -n32 -mips3 -nostdlib -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/lib32 -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/lib32 -woff 1009,1014,1107,1110,1116,1164,1185,1188,1204,1230,1233 -Wl,-woff,85,-woff,84 -rpath /usr/freeware/lib32 -- /hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/ptoolroot/usr/bin/cc +configure:1913: checking for C compiler version +configure:1916: sgifwcompile -e -q -nostdinc -I. -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/include -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include -O3 -OPT:Olimit=0:space=ON -DEBUG:optimize_space=on -TENV:X=1 -CG:unique_exit=on -OPT:IEEE_arithmetic=1:roundoff=0:wrap_around_unsafe_opt=off -n32 -mips3 -nostdlib -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/lib32 -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/lib32 -woff 1009,1014,1107,1110,1116,1164,1185,1188,1204,1230,1233 -Wl,-woff,85,-woff,84 -rpath /usr/freeware/lib32 -- /hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/ptoolroot/usr/bin/cc --version &5 +cc ERROR: -- not allowed in non XPG4 environment +cc ERROR parsing --version: unknown flag +cc ERROR: no source or object file given +configure:1919: $? = 2 +configure:1921: sgifwcompile -e -q -nostdinc -I. -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/include -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include -O3 -OPT:Olimit=0:space=ON -DEBUG:optimize_space=on -TENV:X=1 -CG:unique_exit=on -OPT:IEEE_arithmetic=1:roundoff=0:wrap_around_unsafe_opt=off -n32 -mips3 -nostdlib -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/lib32 -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/lib32 -woff 1009,1014,1107,1110,1116,1164,1185,1188,1204,1230,1233 -Wl,-woff,85,-woff,84 -rpath /usr/freeware/lib32 -- /hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/ptoolroot/usr/bin/cc -v &5 +cc WARNING: -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/include does not refer to a valid directory +cc WARNING: -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/lib32 does not refer to a valid directory +cc ERROR: no source or object file given +configure:1924: $? = 2 +configure:1926: sgifwcompile -e -q -nostdinc -I. -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/include -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include -O3 -OPT:Olimit=0:space=ON -DEBUG:optimize_space=on -TENV:X=1 -CG:unique_exit=on -OPT:IEEE_arithmetic=1:roundoff=0:wrap_around_unsafe_opt=off -n32 -mips3 -nostdlib -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/lib32 -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/lib32 -woff 1009,1014,1107,1110,1116,1164,1185,1188,1204,1230,1233 -Wl,-woff,85,-woff,84 -rpath /usr/freeware/lib32 -- /hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/ptoolroot/usr/bin/cc -V &5 +cc WARNING: -V is ignored +cc ERROR: no source or object file given +configure:1929: $? = 2 +configure:1932: checking whether we are using the GNU C compiler +configure:1953: sgifwcompile -e -q -nostdinc -I. -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/include -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include -O3 -OPT:Olimit=0:space=ON -DEBUG:optimize_space=on -TENV:X=1 -CG:unique_exit=on -OPT:IEEE_arithmetic=1:roundoff=0:wrap_around_unsafe_opt=off -n32 -mips3 -nostdlib -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/lib32 -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/lib32 -woff 1009,1014,1107,1110,1116,1164,1185,1188,1204,1230,1233 -Wl,-woff,85,-woff,84 -rpath /usr/freeware/lib32 -- /hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/ptoolroot/usr/bin/cc -c -mips3 conftest.c >&5 +cc-1020 cc: ERROR File = configure, Line = 1944 + The identifier "choke" is undefined. + + choke me + ^ + +cc-1174 cc: WARNING File = configure, Line = 1944 + The variable "me" was declared but never referenced. + + choke me + ^ + +1 error detected in the compilation of "conftest.c". +configure:1956: $? = 2 +configure: failed program was: +#line 1938 "configure" +#include "confdefs.h" + +int +main () +{ +#ifndef __GNUC__ + choke me +#endif + + ; + return 0; +} +configure:1974: result: no +configure:1980: checking whether sgifwcompile -e -q -nostdinc -I. -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/include -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include -O3 -OPT:Olimit=0:space=ON -DEBUG:optimize_space=on -TENV:X=1 -CG:unique_exit=on -OPT:IEEE_arithmetic=1:roundoff=0:wrap_around_unsafe_opt=off -n32 -mips3 -nostdlib -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/lib32 -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/lib32 -woff 1009,1014,1107,1110,1116,1164,1185,1188,1204,1230,1233 -Wl,-woff,85,-woff,84 -rpath /usr/freeware/lib32 -- /hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/ptoolroot/usr/bin/cc accepts -g +configure:1998: sgifwcompile -e -q -nostdinc -I. -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/include -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include -O3 -OPT:Olimit=0:space=ON -DEBUG:optimize_space=on -TENV:X=1 -CG:unique_exit=on -OPT:IEEE_arithmetic=1:roundoff=0:wrap_around_unsafe_opt=off -n32 -mips3 -nostdlib -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/lib32 -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/lib32 -woff 1009,1014,1107,1110,1116,1164,1185,1188,1204,1230,1233 -Wl,-woff,85,-woff,84 -rpath /usr/freeware/lib32 -- /hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/ptoolroot/usr/bin/cc -c -g conftest.c >&5 +configure:2001: $? = 0 +configure:2004: test -s conftest.o +configure:2007: $? = 0 +configure:2017: result: yes +configure:2044: sgifwcompile -e -q -nostdinc -I. -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/include -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include -O3 -OPT:Olimit=0:space=ON -DEBUG:optimize_space=on -TENV:X=1 -CG:unique_exit=on -OPT:IEEE_arithmetic=1:roundoff=0:wrap_around_unsafe_opt=off -n32 -mips3 -nostdlib -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/lib32 -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/lib32 -woff 1009,1014,1107,1110,1116,1164,1185,1188,1204,1230,1233 -Wl,-woff,85,-woff,84 -rpath /usr/freeware/lib32 -- /hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/ptoolroot/usr/bin/cc -c -mips3 conftest.c >&5 +cc-1020 cc: ERROR File = conftest.c, Line = 2 + The identifier "choke" is undefined. + + choke me + ^ + +cc-1065 cc: ERROR at end of source + A semicolon is expected at this point. + + +2 errors detected in the compilation of "conftest.c". +configure:2047: $? = 2 +configure: failed program was: +#ifndef __cplusplus + choke me +#endif +configure:2150: checking how to run the C preprocessor +configure:2176: sgifwcompile -e -q -nostdinc -I. -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/include -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include -O3 -OPT:Olimit=0:space=ON -DEBUG:optimize_space=on -TENV:X=1 -CG:unique_exit=on -OPT:IEEE_arithmetic=1:roundoff=0:wrap_around_unsafe_opt=off -n32 -mips3 -nostdlib -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/lib32 -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/lib32 -woff 1009,1014,1107,1110,1116,1164,1185,1188,1204,1230,1233 -Wl,-woff,85,-woff,84 -rpath /usr/freeware/lib32 -- /hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/ptoolroot/usr/bin/cc -E conftest.c +configure:2182: $? = 0 +configure:2209: sgifwcompile -e -q -nostdinc -I. -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/include -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include -O3 -OPT:Olimit=0:space=ON -DEBUG:optimize_space=on -TENV:X=1 -CG:unique_exit=on -OPT:IEEE_arithmetic=1:roundoff=0:wrap_around_unsafe_opt=off -n32 -mips3 -nostdlib -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/lib32 -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/lib32 -woff 1009,1014,1107,1110,1116,1164,1185,1188,1204,1230,1233 -Wl,-woff,85,-woff,84 -rpath /usr/freeware/lib32 -- /hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/ptoolroot/usr/bin/cc -E conftest.c +cc-1005 cc: ERROR File = configure, Line = 2206 + The source file "ac_nonexistent.h" is unavailable. + + #include + ^ + +1 catastrophic error detected in the compilation of "conftest.c". +Compilation terminated. +configure:2215: $? = 2 +configure: failed program was: +#line 2205 "configure" +#include "confdefs.h" +#include +configure:2252: result: sgifwcompile -e -q -nostdinc -I. -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/include -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include -O3 -OPT:Olimit=0:space=ON -DEBUG:optimize_space=on -TENV:X=1 -CG:unique_exit=on -OPT:IEEE_arithmetic=1:roundoff=0:wrap_around_unsafe_opt=off -n32 -mips3 -nostdlib -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/lib32 -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/lib32 -woff 1009,1014,1107,1110,1116,1164,1185,1188,1204,1230,1233 -Wl,-woff,85,-woff,84 -rpath /usr/freeware/lib32 -- /hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/ptoolroot/usr/bin/cc -E +configure:2267: sgifwcompile -e -q -nostdinc -I. -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/include -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include -O3 -OPT:Olimit=0:space=ON -DEBUG:optimize_space=on -TENV:X=1 -CG:unique_exit=on -OPT:IEEE_arithmetic=1:roundoff=0:wrap_around_unsafe_opt=off -n32 -mips3 -nostdlib -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/lib32 -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/lib32 -woff 1009,1014,1107,1110,1116,1164,1185,1188,1204,1230,1233 -Wl,-woff,85,-woff,84 -rpath /usr/freeware/lib32 -- /hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/ptoolroot/usr/bin/cc -E conftest.c +configure:2273: $? = 0 +configure:2300: sgifwcompile -e -q -nostdinc -I. -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/include -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include -O3 -OPT:Olimit=0:space=ON -DEBUG:optimize_space=on -TENV:X=1 -CG:unique_exit=on -OPT:IEEE_arithmetic=1:roundoff=0:wrap_around_unsafe_opt=off -n32 -mips3 -nostdlib -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/lib32 -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/lib32 -woff 1009,1014,1107,1110,1116,1164,1185,1188,1204,1230,1233 -Wl,-woff,85,-woff,84 -rpath /usr/freeware/lib32 -- /hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/ptoolroot/usr/bin/cc -E conftest.c +cc-1005 cc: ERROR File = configure, Line = 2297 + The source file "ac_nonexistent.h" is unavailable. + + #include + ^ + +1 catastrophic error detected in the compilation of "conftest.c". +Compilation terminated. +configure:2306: $? = 2 +configure: failed program was: +#line 2296 "configure" +#include "confdefs.h" +#include +configure:2345: checking for X +configure:2446: sgifwcompile -e -q -nostdinc -I. -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/include -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include -O3 -OPT:Olimit=0:space=ON -DEBUG:optimize_space=on -TENV:X=1 -CG:unique_exit=on -OPT:IEEE_arithmetic=1:roundoff=0:wrap_around_unsafe_opt=off -n32 -mips3 -nostdlib -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/lib32 -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/lib32 -woff 1009,1014,1107,1110,1116,1164,1185,1188,1204,1230,1233 -Wl,-woff,85,-woff,84 -rpath /usr/freeware/lib32 -- /hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/ptoolroot/usr/bin/cc -E conftest.c +configure:2452: $? = 0 +configure:2497: sgifwcompile -e -q -nostdinc -I. -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/include -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include -O3 -OPT:Olimit=0:space=ON -DEBUG:optimize_space=on -TENV:X=1 -CG:unique_exit=on -OPT:IEEE_arithmetic=1:roundoff=0:wrap_around_unsafe_opt=off -n32 -mips3 -nostdlib -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/lib32 -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/lib32 -woff 1009,1014,1107,1110,1116,1164,1185,1188,1204,1230,1233 -Wl,-woff,85,-woff,84 -rpath /usr/freeware/lib32 -- /hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/ptoolroot/usr/bin/cc -o conftest -mips3 -mips3 conftest.c -lXt >&5 +configure:2500: $? = 0 +configure:2503: test -s conftest +configure:2506: $? = 0 +configure:2554: result: libraries , headers +configure:2578: checking for a BSD compatible install +configure:2627: result: install +configure:2642: checking for mawk +configure:2668: result: no +configure:2642: checking for gawk +configure:2657: found /usr/freeware/bin/gawk +configure:2665: result: gawk +configure:2713: checking for ranlib +configure:2737: result: : +configure:2784: checking for snprintf +configure:2821: sgifwcompile -e -q -nostdinc -I. -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/include -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include -O3 -OPT:Olimit=0:space=ON -DEBUG:optimize_space=on -TENV:X=1 -CG:unique_exit=on -OPT:IEEE_arithmetic=1:roundoff=0:wrap_around_unsafe_opt=off -n32 -mips3 -nostdlib -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/lib32 -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/lib32 -woff 1009,1014,1107,1110,1116,1164,1185,1188,1204,1230,1233 -Wl,-woff,85,-woff,84 -rpath /usr/freeware/lib32 -- /hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/ptoolroot/usr/bin/cc -o conftest -mips3 -mips3 conftest.c -L -R >&5 +cc ERROR parsing -R: no argument given for option +cc ERROR parsing -R: unknown flag +configure:2824: $? = 2 +configure: failed program was: +#line 2790 "configure" +#include "confdefs.h" +/* System header to define __stub macros and hopefully few prototypes, + which can conflict with char snprintf (); below. */ +#include +/* Override any gcc2 internal prototype to avoid an error. */ +#ifdef __cplusplus +extern "C" +#endif +/* We use char because int might match the return type of a gcc2 + builtin and then its argument prototype would still apply. */ +char snprintf (); +char (*f) (); + +int +main () +{ +/* The GNU C library defines this for functions which it implements + to always fail with ENOSYS. Some functions are actually named + something starting with __ and the normal name is an alias. */ +#if defined (__stub_snprintf) || defined (__stub___snprintf) +choke me +#else +f = snprintf; +#endif + + ; + return 0; +} +configure:2840: result: no +configure:2851: checking for X11/xpm.h +configure:2861: sgifwcompile -e -q -nostdinc -I. -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/include -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include -O3 -OPT:Olimit=0:space=ON -DEBUG:optimize_space=on -TENV:X=1 -CG:unique_exit=on -OPT:IEEE_arithmetic=1:roundoff=0:wrap_around_unsafe_opt=off -n32 -mips3 -nostdlib -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/lib32 -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/lib32 -woff 1009,1014,1107,1110,1116,1164,1185,1188,1204,1230,1233 -Wl,-woff,85,-woff,84 -rpath /usr/freeware/lib32 -- /hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/ptoolroot/usr/bin/cc -E -I /usr/X11R6/include conftest.c +/usr/X11R6/include: +cc ERROR: file does not exist: /usr/X11R6/include +conftest.c: +configure:2867: $? = 2 +configure: failed program was: +#line 2857 "configure" +#include "confdefs.h" +#include +configure:2886: result: no +configure:3482: checking for usleep +configure:3519: sgifwcompile -e -q -nostdinc -I. -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/include -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include -O3 -OPT:Olimit=0:space=ON -DEBUG:optimize_space=on -TENV:X=1 -CG:unique_exit=on -OPT:IEEE_arithmetic=1:roundoff=0:wrap_around_unsafe_opt=off -n32 -mips3 -nostdlib -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/lib32 -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/lib32 -woff 1009,1014,1107,1110,1116,1164,1185,1188,1204,1230,1233 -Wl,-woff,85,-woff,84 -rpath /usr/freeware/lib32 -- /hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/ptoolroot/usr/bin/cc -o conftest -mips3 -I /usr/X11R6/include -mips3 conftest.c -L -R >&5 +cc ERROR parsing -R: no argument given for option +cc ERROR parsing -R: unknown flag +configure:3522: $? = 2 +configure: failed program was: +#line 3488 "configure" +#include "confdefs.h" +/* System header to define __stub macros and hopefully few prototypes, + which can conflict with char usleep (); below. */ +#include +/* Override any gcc2 internal prototype to avoid an error. */ +#ifdef __cplusplus +extern "C" +#endif +/* We use char because int might match the return type of a gcc2 + builtin and then its argument prototype would still apply. */ +char usleep (); +char (*f) (); + +int +main () +{ +/* The GNU C library defines this for functions which it implements + to always fail with ENOSYS. Some functions are actually named + something starting with __ and the normal name is an alias. */ +#if defined (__stub_usleep) || defined (__stub___usleep) +choke me +#else +f = usleep; +#endif + + ; + return 0; +} +configure:3538: result: no +configure:3672: creating ./config.status + +## ----------------------- ## +## Running config.status. ## +## ----------------------- ## + +This file was extended by config.status 2.52, executed with + CONFIG_FILES = + CONFIG_HEADERS = + CONFIG_LINKS = + CONFIG_COMMANDS = + > ./config.status +on mathom.neu.sgi.com + +config.status:4136: creating Makefile +config.status:4136: creating irix65/Makefile +config.status:4136: creating Makefile.config +config.status:4136: creating Makefile.GNU.autodep +config.status:4136: creating Xdefaults ## ----------------- ## ## Cache variables. ## @@ -62,8 +397,10 @@ ac_cv_build=mips-sgi-irix6.5 ac_cv_build_alias=mips-sgi-irix6.5 +ac_cv_c_compiler_gnu=no +ac_cv_cxx_compiler_gnu=no ac_cv_env_CC_set=set -ac_cv_env_CC_value=cc +ac_cv_env_CC_value='sgifwcompile -e -q -nostdinc -I. -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/include -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include -O3 -OPT:Olimit=0:space=ON -DEBUG:optimize_space=on -TENV:X=1 -CG:unique_exit=on -OPT:IEEE_arithmetic=1:roundoff=0:wrap_around_unsafe_opt=off -n32 -mips3 -nostdlib -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/lib32 -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/lib32 -woff 1009,1014,1107,1110,1116,1164,1185,1188,1204,1230,1233 -Wl,-woff,85,-woff,84 -rpath /usr/freeware/lib32 -- /hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/ptoolroot/usr/bin/cc' ac_cv_env_CFLAGS_set=set ac_cv_env_CFLAGS_value=-mips3 ac_cv_env_CPPFLAGS_set='' @@ -73,7 +410,7 @@ ac_cv_env_CXXFLAGS_set='' ac_cv_env_CXXFLAGS_value='' ac_cv_env_CXX_set=set -ac_cv_env_CXX_value=CC +ac_cv_env_CXX_value='sgifwcompile -e -q -nostdinc -I. -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/include -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include/CC -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include -O3 -OPT:Olimit=0:space=ON -DEBUG:optimize_space=on -TENV:X=1 -CG:unique_exit=on -OPT:IEEE_arithmetic=1:roundoff=0:wrap_around_unsafe_opt=off -n32 -mips3 -nostdlib -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/lib32 -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/lib32 -woff 1009,1014,1107,1110,1116,1164,1185,1188,1204,1230,1233 -Wl,-woff,85,-woff,84 -rpath /usr/freeware/lib32 -LANG:std -- /hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/ptoolroot/usr/bin/CC' ac_cv_env_LDFLAGS_set=set ac_cv_env_LDFLAGS_value=-mips3 ac_cv_env_build_alias_set='' @@ -82,9 +419,44 @@ ac_cv_env_host_alias_value='' ac_cv_env_target_alias_set='' ac_cv_env_target_alias_value='' +ac_cv_func_snprintf=no +ac_cv_func_usleep=no +ac_cv_have_x=have_x='yes ac_x_includes= ac_x_libraries=' +ac_cv_header_X11_xpm_h=no ac_cv_host=mips-sgi-irix6.5 ac_cv_host_alias=mips-sgi-irix6.5 +ac_cv_lib_gen_getmntent=no +ac_cv_lib_socket=no +ac_cv_lib_socket_gethostname=no +ac_cv_lib_socket_main=no +ac_cv_lib_socket_socket=no +ac_cv_lib_sun=no +ac_cv_lib_sun_getmntent=no +ac_cv_lib_sun_getpwnam=no +ac_cv_lib_sun_yp_match=no +ac_cv_objext=o +ac_cv_prog_AWK=gawk +ac_cv_prog_CPP='sgifwcompile -e -q -nostdinc -I. -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/include -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include -O3 -OPT:Olimit=0:space=ON -DEBUG:optimize_space=on -TENV:X=1 -CG:unique_exit=on -OPT:IEEE_arithmetic=1:roundoff=0:wrap_around_unsafe_opt=off -n32 -mips3 -nostdlib -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/lib32 -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/lib32 -woff 1009,1014,1107,1110,1116,1164,1185,1188,1204,1230,1233 -Wl,-woff,85,-woff,84 -rpath /usr/freeware/lib32 -- /hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/ptoolroot/usr/bin/cc -E' +ac_cv_prog_ac_ct_CC='sgifwcompile -e -q -nostdinc -I. -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/include -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include -O3 -OPT:Olimit=0:space=ON -DEBUG:optimize_space=on -TENV:X=1 -CG:unique_exit=on -OPT:IEEE_arithmetic=1:roundoff=0:wrap_around_unsafe_opt=off -n32 -mips3 -nostdlib -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/lib32 -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/lib32 -woff 1009,1014,1107,1110,1116,1164,1185,1188,1204,1230,1233 -Wl,-woff,85,-woff,84 -rpath /usr/freeware/lib32 -- /hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/ptoolroot/usr/bin/cc' +ac_cv_prog_ac_ct_RANLIB=: +ac_cv_prog_cc_g=yes +ac_cv_prog_cxx_g=yes +gt_cv_func_dgettext_libc=no +gt_cv_func_gettext_libc=no +ice_cv_have_bool=yes +ice_cv_have_long_long=yes +## ------------ ## +## confdefs.h. ## +## ------------ ## + +#ifdef __cplusplus +#include +#endif +#define HAVE_BOOL 1 +#define LONG_LONG long long +#define _G_HAVE_BOOL 1 +#define HAVE_SNPRINTF 1 + -configure: caught signal 2 -configure: exit 1 +configure: exit 0 --- ./Makefile Thu Apr 24 08:25:49 2003 +++ ../xosview/./Makefile Fri Apr 25 16:30:45 2003 @@ -25,7 +25,7 @@ CFILES := $(OBJS:.o=.cc) DEPFILES := $(OBJS:%=.%.d) -INSTALL = /usr/freeware/bin/install -c +INSTALL = install #----------------------------------------------------------------------- @@ -46,7 +46,7 @@ ## If for some reason (such as permissions) you wish to change where ## xosview is installed, re-run configure with ## --prefix=, which will change the next line. -PREFIX_TO_USE=/usr/X11R6 +PREFIX_TO_USE=/usr/freeware BINDIR=$(PREFIX_TO_USE)/bin MANDIR=$(PREFIX_TO_USE)/man/man1 XAPPLOADDIR=$(PREFIX_TO_USE)/lib/X11/app-defaults --- ./Makefile.config Thu Apr 24 08:25:49 2003 +++ ../xosview/./Makefile.config Fri Apr 25 16:30:54 2003 @@ -10,12 +10,12 @@ # version number for release VERS = 1.8.0 -TOP = /scratch/xosview +TOP = /scratch/compile/freeware/xosview/24.04.2003/xosview #----------------------------------------------------------------- # C++ compiler #----------------------------------------------------------------- -CXX = CC +CXX = sgifwcompile -e -q -nostdinc -I. -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/include -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include/CC -I/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/include -O3 -OPT:Olimit=0:space=ON -DEBUG:optimize_space=on -TENV:X=1 -CG:unique_exit=on -OPT:IEEE_arithmetic=1:roundoff=0:wrap_around_unsafe_opt=off -n32 -mips3 -nostdlib -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/freeware/lib32 -L/hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/proot/usr/lib32 -woff 1009,1014,1107,1110,1116,1164,1185,1188,1204,1230,1233 -Wl,-woff,85,-woff,84 -rpath /usr/freeware/lib32 -LANG:std -- /hosts/babylon.engr/usr/dist/new_toolroots/6.5/products/freeware/latest/ptoolroot/usr/bin/CC #----------------------------------------------------------------- # Compiler flags