[daip] 31DEC01 INSTEP4 problem

Deidre A. Hunter Deidre.Hunter at lowell.edu
Thu Apr 4 10:30:52 EST 2002


----------
X-Sun-Data-Type: text
X-Sun-Data-Description: text
X-Sun-Data-Name: text
X-Sun-Charset: us-ascii
X-Sun-Content-Lines: 14

I am trying to install 31DEC01 AIPS, but it bombs in
INSTEP4 complaining of a "wimpy compiler". Could you give me
some insight into what is happening? I have attached the .AIPSRC,
FDEFAULT.SH, and INSTEPT4.LOG for info. My computer TURTLE is 
a SUN Ultra 1 running SunOS 5.8. 

I thought it might be that I was using an "old" compiler. I had used
the one in  ....../SUN/SUNWspro yesterday. Today I tried using the one
in ....../SUN2/SUNWspro, which is the one actually used if I compile
a Fortran program, but with the same results.

Thank you.

Deidre Hunter
----------
X-Sun-Data-Type: default
X-Sun-Data-Description: default
X-Sun-Data-Name: .AIPSRC
X-Sun-Charset: us-ascii
X-Sun-Content-Lines: 27

# AIPSRC created by install.pl on Thu Apr  4  7:56:28 US/Arizona 2002
#
AIPS_ROOT = /te/aips
GROUP = dah
GROUPWRITE = YES
ARCH = SUL
SITE = DAHOFFICE
THISHOST = TURTLE
HOSTS = "TURTLE TORTUGA"
PRINTERS = "scribe:PS~DEF~SB,one-sided prc:PS~NONE~prc,one-sided,in_PRC trantor:PS~NONE~trantor_in_PRC ghostview:PREVIEW~NONE~ghostview_previewer rgb:PS-CMYK~NONE~color_printer"
DATA_AREAS = "/tortuga/tc/aips:/turtle/te/aips/TORTUGA_1 /turtle/th/aips:/turtle/te/aips/TURTLE_6 /turtle/tc/aips:/turtle/te/aips/TURTLE_1 /turtle/tf/aips:/turtle/te/aips/TURTLE_4 /tofu/data4/aips:/turtle/te/aips/TOFU_1 /turtle/td/aips:/turtle/te/aips/TURTLE_2 /turtle/tg/aips:/turtle/te/aips/TURTLE_5 /turtle/te/aips:/turtle/te/aips/TURTLE_3"
TAPE_DRIVES = "TURTLE;/dev/rmt/0mn:Exabyte_on_turtle"
TPHOSTS = "127.0.0.1 turtle.hill.lowellnet tortuga.hill.lowellnet tofu.hill.lowellnet"
DEFSERV = INET
APSIZE = 20
PRINTMED = A
FORT = /opt/local/SUN2/SUNWspro/bin/f77
FORTOPT = -c -fns -fsimple=1 -xarch=v8plusa -xlibmopt -dalign -ansi -u
CCOM = /opt/local/SUN2/SUNWspro/bin/cc
CCOMOPT = -v -c -I/te/aips/31DEC01/INC -fns -fsimple=1 -xarch=v8plus -dalign -D_FILE_OFFSET_BITS=64
LINK = /opt/local/SUN2/SUNWspro/bin/f77
READLINE = /usr/local/gnu/lib/libreadline.a
DOTWOLIB = NO
DOWNLOADED = 2002.04.03:21:37.11
UNPACKED = Unpacked in /te/aips at Wed Apr  3 14:41:25 2002

#---- End of AIPSRC file
----------
X-Sun-Data-Type: shell-script
X-Sun-Data-Description: shell-script
X-Sun-Data-Name: FDEFAULT.SH
X-Sun-Charset: us-ascii
X-Sun-Content-Lines: 156

#!/bin/sh
#-----------------------------------------------------------------------
#;  Copyright (C) 1995-2001
#;  Associated Universities, Inc. Washington DC, USA.
#;
#;  This program is free software; you can redistribute it and/or
#;  modify it under the terms of the GNU General Public License as
#;  published by the Free Software Foundation; either version 2 of
#;  the License, or (at your option) any later version.
#;
#;  This program is distributed in the hope that it will be useful,
#;  but WITHOUT ANY WARRANTY; without even the implied warranty of
#;  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#;  GNU General Public License for more details.
#;
#;  You should have received a copy of the GNU General Public
#;  License along with this program; if not, write to the Free
#;  Software Foundation, Inc., 675 Massachusetts Ave, Cambridge,
#;  MA 02139, USA.
#;
#;  Correspondence concerning AIPS should be addressed as follows:
#;         Internet email: aipsmail at nrao.edu.
#;         Postal address: AIPS Project Office
#;                         National Radio Astronomy Observatory
#;                         520 Edgemont Road
#;                         Charlottesville, VA 22903-2475 USA
#-----------------------------------------------------------------------
# FDEFAULT.SH
#
# $Id: FDEFAULT.SH,v 1.1 2001/06/06 20:26:54 egreisen Exp $
#
#-----------------------------------------------------------------------
# set compiler name, compiler switches to AIPS standard names
# Input Variables
#   ARCH      = Type of CPU (Convex Sun or IBM)
# Variables returned:
#   COMPILER  = Name of fortran Compiler
#   COMPSWIT  = Switches needed to enforce AIPS coding standards
#               IMPORTANT: Within the case statement on $ARCH, the
#               setting of this variable HAS to be on ONE SINGLE LINE!
#               This is for install.pl's use.
#   OPT(0-9)  = Ten compiler optimzation levels
#   DEBUG     = Compiler Debug switch
#
# Posix version, with allowances for most AIPS-supported OS versions.
# (based on the 1991 draft 11.2 of Posix 1003.2)
#
#    SUL version
#
#-----------------------------------------------------------------------
#                                       Set default compiler for POSIX
COMPILER="fort77"
#                                       Dirty is a carryover from VMS...
DIRTY=""; NODIRTY=""
#                                       POSIX Fortran 77 debug flag.
DEBUG="-g"; NODEBUG=""
#                                       Profile, architecture dependent.
PROFILE=""
#                                       POSIX compile-only switch
COMPSWIT="-c"
#                                       POSIX "no optimize" directive
NOOPT="-O0"
#                                       Generate source code listing?
LIST=FALSE
#                                       Remove leftover .f, .LOG files
PURGE=FALSE
#                                       Case by case differences from
#                                       the above standard definitions.
case $ARCH in
   SUL)
#                                       --------------------------------
#                                       Sun4/Sparc, SunOS 5+.  NOTE!!!!!
#                                       These settings are for the Sparc
#                                       Compiler version 4.x; they may
#                                       not all be available in older
#                                       compilers.  Check the f77 manual
#                                       page in /opt/SUNWspro/man/f77.1
#                                       if you are in any doubt.
#                                       MUST BE CONSISTENT between this,
#                                       LDOPTS.SH and CCOPTS.SH
#                                       (last two in $SYSLOCAL).
#                                       -fns uses Sparc nonstandard f.p.
#                                       -fsimple=1 allows conservative
#                                         simplifications in optimizing.
#                                       -xtarget=generic forces result
#                                         to run on all Sparc arch's.
#                                       -xlibmopt includes optimized
#                                         math library
#                                       -xarch=v8plusa uses Ultra
#                                         instructions with VIS
#                                         extensions (reported to
#                                         help some vector operations);
#                                         use v8plus for non-Sun
#                                         SPARC v9 chips (eg. Fujitsu)
#                                         or expect a bad performance
#                                         hit.
#                                       Do not use -xchip=ultra or
#                                         -xtarget=ultra until further
#                                         notice: SW 4.2 generates bad
#                                         code at OPT3 for some loops
#                                         involving reduction over
#                                         arrays that are not indexed
#                                         by the loop index
# Original:       COMPSWIT="-c -fns -fsimple=1 -xarch=v8plusa -xlibmopt -dalign"
# Changed by install.pl on Wed Apr  3 16:29:44 US/Arizona 2002
# Original:       COMPSWIT="-c -fns -fsimple=1 -xarch=v8plusa -xlibmopt -dalign -ansi -u"
# Changed by install.pl on Thu Apr  4  7:50:27 US/Arizona 2002
      COMPSWIT="-c -fns -fsimple=1 -xarch=v8plusa -xlibmopt -dalign -ansi -u"
#
      OPT0="" ;    OPT1="-O1" ; OPT2="-O2" ; OPT3="-O3"
      OPT4="-O3" ; OPT5="-O3" ; OPT6="-O3" ; OPT7="-O3"
#                                       -O4 and up can slow some
#                                       programs down and should not be
#                                       used without evidence that they
#                                       help.
      OPT8="-O4" ; OPT9="-O5"
#                                       set noopt level and default
      NOOPT=$OPT0
#
# Original:       COMPILER="/opt/SUNWspro/bin/f77"
# Changed by install.pl on Wed Apr  3 16:29:44 US/Arizona 2002
# Original:       COMPILER=/opt/local/SUN/SUNWspro/bin/f77
# Changed by install.pl on Thu Apr  4  7:50:27 US/Arizona 2002
      COMPILER=/opt/local/SUN2/SUNWspro/bin/f77
#                                       Using shared libs?
      [ -f $SYSLOCAL/USESHARED ] && COMPSWIT="$COMPSWIT  -PIC"
#                                       Option for profiling
      PROFILE="-p"
#                                       -e extends source to 132 columns
      DIRTY="-e"
#                                       -ansi warns of non-std. code
#                                       -u is "implicit none" equivalent
      NODIRTY="-ansi -u"
#                                       Exceptions for MNJ sites
      if [ "$SITE" = "NRL-RIOS" ] ; then
         COMPILER="/usr/SUNWspro/bin/f77"
         COMPSWIT="$COMPSWIT -xcache=16/32/1:2048/64/1 -xlibmil"
      fi
      COMPSWIT="$COMPSWIT $NODIRTY"
   ;;
   *)
#                                       --------------------------------
#                                       Other: Assume simple -O settings
#                                       In addition to the defaults.
      echo "You are using an SUL FDEFAULT.SH on" $ARCH
      OPT0="-O0" ; OPT1="-O1" ; OPT2="-O2"
      OPT3=$OPT2 ; OPT4=$OPT2 ; OPT5=$OPT2 ; OPT6=$OPT2
      OPT7=$OPT2 ; OPT8=$OPT2 ; OPT9=$OPT2
   ;;
esac
#
COMP=$COMPSWIT
#                                       export the defined values
export NODEBUG DEBUG DIRTY NODIRTY PROFILE PURGE
export COMPILER COMPSWIT NOOPT
export OPT0 OPT1 OPT2 OPT3 OPT4 OPT5 OPT6 OPT7 OPT8 OPT9
----------
X-Sun-Data-Type: default
X-Sun-Data-Description: default
X-Sun-Data-Name: INSTEP4.LOG
X-Sun-Charset: us-ascii
X-Sun-Content-Lines: 2901

INSTEP4    : Begins at Wed Apr  3 18:41:16 MST 2002
INSTEP4    : 
INSTEP4    : Compile and Link all programs (may take a while)
INSTEP4    : 
INSTEP4    : Processing $AIPPGM/...
INSTEP4    : programs.
MAKEAT    : Making     AIPPGM.LIS
INSTEP4    : Begin      $AIPPGM/...
INSTEP4    : compiling/linking of
INSTEP4   : /te/aips/31DEC01/AIPS/PGM/AIPS.FOR
INSTEP4   : /te/aips/31DEC01/AIPS/PGM/AIPSB.FOR
INSTEP4   : /te/aips/31DEC01/AIPS/PGM/AIPSC.FOR
INSTEP4   : /te/aips/31DEC01/AIPS/PGM/AJAX.FOR
INSTEP4   : /te/aips/31DEC01/AIPS/PGM/BATER.FOR
INSTEP4   : /te/aips/31DEC01/AIPS/PGM/BSTRT1.FOR
INSTEP4   : /te/aips/31DEC01/AIPS/PGM/DAIP.FOR
INSTEP4   : /te/aips/31DEC01/AIPS/PGM/FILAI2.FOR
INSTEP4   : /te/aips/31DEC01/AIPS/PGM/FILAIP.FOR
INSTEP4   : /te/aips/31DEC01/AIPS/PGM/FILINI.FOR
INSTEP4   : /te/aips/31DEC01/AIPS/PGM/GRIPR.FOR
INSTEP4   : /te/aips/31DEC01/AIPS/PGM/POPSGN.FOR
INSTEP4   : /te/aips/31DEC01/AIPS/PGM/QMNGR.FOR
INSTEP4   : /te/aips/31DEC01/AIPS/PGM/RECAT.FOR
INSTEP4   : /te/aips/31DEC01/AIPS/PGM/SETSP.FOR
INSTEP4   : /te/aips/31DEC01/AIPS/PGM/SETTVP.FOR
COMLNK    : Date       Wed Apr  3 18:41:20 MST 2002
PP        : Preprocess /te/aips/31DEC01/AIPS/PGM/AIPS.FOR
PP        : into       /te/aips/31DEC01/SUL/PREP/AIPS.f
FC        : Date       Wed Apr  3 18:41:22 MST 2002
FC        : Interpret  FC  \
FC        :            /te/aips/31DEC01/SUL/PREP/AIPS.f
FC        : as         LIST=FALSE PURGE=FALSE
FC        : plus       /opt/local/SUN/SUNWspro/bin/f77 -c -fns -fsimple=1 -xarch=v8plusa -xlibmopt -dalign -ansi -u -ansi -u -O3 \
FC        :            /te/aips/31DEC01/SUL/PREP/AIPS.f
f77: Warning: Option -fns passed to ld, if ld is invoked, ignored otherwise
f77: Warning: Option -xarch=v8plusa passed to ld, if ld is invoked, ignored otherwise
/te/aips/31DEC01/SUL/PREP/AIPS.f:
 MAIN aips:
"/te/aips/31DEC01/SUL/PREP/AIPS.f", ANSI extension: compiler flag invokes nonStandard feature
	aipbeg:
	aiperr:
	gtline:
	interp:
	verbs:
FC        : Compile of /te/aips/31DEC01/SUL/PREP/AIPS.f
FC        : ends successfully.
LINK      : Date is... Wed Apr  3 18:41:26 MST 2002
LINK      : Interpret  LINK \
LINK      :            /te/aips/31DEC01/SUL/PREP/AIPS.o
LINK      : as         PURGE=FALSE REPLACE=TRUE SAVE=TRUE STRIP=TRUE
LINK      : plus       /opt/local/SUN/SUNWspro/bin/f77 \
LINK      :            /te/aips/31DEC01/SUL/PREP/AIPS.o \
LINK      :            /te/aips/31DEC01/SUL/LIBR/AIPSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/YSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/YSS/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/GNU/libreadline.a \ 
LINK      :            -ltermcap \ 
LINK      :            -lsocket -lnsl -xarch=v8plusa -dalign -xlibmopt -s \
LINK      :            -o /te/aips/31DEC01/SUL/PREP/AIPS.EXE
f77: Warning: Option -xarch=v8plusa passed to ld, if ld is invoked, ignored otherwise
/usr/ccs/bin/ld: illegal option -- x
/usr/ccs/bin/ld: illegal option -- x
usage: ld [-abc:d:e:f:h:il:mo:p:rstu:z:B:D:F:GI:L:M:N:P:Q:R:S:VY:] file(s)
	[-a]		create an absolute file
	[-b]		do not do special PIC relocations in a.out
	[-c file]	record configuration `file'
	[-d y|n]	operate in dynamic|static mode
	[-e sym]	use `sym' as entry point address
	[-f name]	specify library for which this file is an auxiliary
			filter
	[-h name]	use `name' as internal shared object identifier
	[-i]		ignore LD_LIBRARY_PATH setting
	[-l x]		search for libx.so or libx.a
	[-m]		print memory map
	[-o outfile]	name the output file `outfile'
	[-p name]	identify audit object to accompany this object
	[-r]		create a relocatable object
	[-s]		strip any symbol and debugging information
	[-t]		do not warn of multiply defined symbols of different
			sizes
	[-u sym]	create an undefined symbol `sym'
	[-z absexec]	when building an executable absolute symbols
 			referenced in dynamic objects are promoted to
 			the executable.
	[-z now]	mark object as requiring non-lazy binding
	[-z defs|nodefs]
			disallow|allow undefined symbols
	[-z endfiltee]	marks a filtee such that it will terminate a filters
			search
	[-z direct]	specify 'direct' bindings for executable when run
	[-z groupperm|nogroupperm]
			enable|disable setting of GROUP permissions
			on dynamic dependencies
	[-z ignore|record]
			ignore|record unused dynamic dependencies
	[-z initfirst]	mark object to indicate that its .init section should
			be executed before the .init section of any other
			objects
	[-z loadfltr]	mark filter as requiring immediate loading of its
			filtees at runtime
	[-z interpose]	dynamic object is to be an `interposer' on
			direct bindings
	[-z lazyload|nolazyload]
			enable|disable delayed loading of shared objects
	[-z muldefs]	allow multiply defined symbols
	[-z nodefaultlib]
			mark object to ignore any default library search path
	[-z nodelete]	mark object as non-deletable
	[-z nodlopen]	mark object as non-dlopen()'able
	[-z nodump]	mark object as non-dldump()'able
	[-z noversion]	don't record any version sections
	[-z origin]	mark object as requiring $ORIGIN processing
	[-z redlocsym]	reduce local syms in .symtab to a minimum
	[-z text]	disallow output relocations against text
	[-z textwarn]	warn if there are relocations against text
	[-z textoff]	allow output relocations against text
	[-z weakextract]
			allow extraction of archive members to resolve weak
			references
	[-z allextract]	extract all member files from archive files
	[-z defaultextract]
			extract member files from archive files
			which resolve undefined or tentative symbols
	[-z combreloc]	combine multiple relocation sections
	[-B dynamic|static]
			search for shared libraries|archives
	[-B group]	relocate object from within group
	[-B eliminate]	eliminate unqualified global
			symbols from the symbol table
	[-B local]	reduce unqualified global symbols to local
	[-B reduce]	process symbol reductions
	[-B symbolic]	bind external references to definitions when creating
			shared objects
	[-B direct]	specify 'direct' bindings for executable when run
	[-B translator]	specify that this object is to act as a 'translator'
			for an application bound with -Bdirect
	[-D options]	print diagnostic messages
	[-F name]	specify library for which this file is a filter
	[-G]		create a shared object
	[-I interp]	use `interp' as path name of interpreter
	[-L path]	search for libraries in directory `path'
	[-M mapfile]	use processing directives contained in `mapfile'
	[-N file]	create a dynamic dependency on `file'
	[-P name]	identify audit object for processing the dependencies
			of this object
	[-Q y|n]	do|do not place version information in output file
	[-R path]	specify a library search path to be used at run time
	[-S name]	specify a link-edit support library
	[-V]		print version information
	[-Y P,dirlist]	use `dirlist' as a default path when searching for
			libraries
LINK      : Status from /opt/local/SUN/SUNWspro/bin/f77 is 1
LINK      : Link of    /te/aips/31DEC01/SUL/PREP/AIPS.o
LINK      : dies from wimpy compiler
COMLNK    : Link failed!
COMLNK    : Deleted    /te/aips/31DEC01/SUL/PREP/AIPS.o
COMLNK    : Deleted    /te/aips/31DEC01/SUL/PREP/AIPS.f
COMLNK    : Date       Wed Apr  3 18:41:27 MST 2002
PP        : Preprocess /te/aips/31DEC01/AIPS/PGM/AIPSB.FOR
PP        : into       /te/aips/31DEC01/SUL/PREP/AIPSB.f
FC        : Date       Wed Apr  3 18:41:29 MST 2002
FC        : Interpret  FC  \
FC        :            /te/aips/31DEC01/SUL/PREP/AIPSB.f
FC        : as         LIST=FALSE PURGE=FALSE
FC        : plus       /opt/local/SUN/SUNWspro/bin/f77 -c -fns -fsimple=1 -xarch=v8plusa -xlibmopt -dalign -ansi -u -ansi -u -O3 \
FC        :            /te/aips/31DEC01/SUL/PREP/AIPSB.f
f77: Warning: Option -fns passed to ld, if ld is invoked, ignored otherwise
f77: Warning: Option -xarch=v8plusa passed to ld, if ld is invoked, ignored otherwise
/te/aips/31DEC01/SUL/PREP/AIPSB.f:
 MAIN aipsb:
"/te/aips/31DEC01/SUL/PREP/AIPSB.f", ANSI extension: compiler flag invokes nonStandard feature
	batset:
	gtlinb:
	interb:
	verbsb:
FC        : Compile of /te/aips/31DEC01/SUL/PREP/AIPSB.f
FC        : ends successfully.
LINK      : Date is... Wed Apr  3 18:41:33 MST 2002
LINK      : Interpret  LINK \
LINK      :            /te/aips/31DEC01/SUL/PREP/AIPSB.o
LINK      : as         PURGE=FALSE REPLACE=TRUE SAVE=TRUE STRIP=TRUE
LINK      : plus       /opt/local/SUN/SUNWspro/bin/f77 \
LINK      :            /te/aips/31DEC01/SUL/PREP/AIPSB.o \
LINK      :            /te/aips/31DEC01/SUL/LIBR/AIPSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/YSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/YSS/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/GNU/libreadline.a \ 
LINK      :            -ltermcap \ 
LINK      :            -lsocket -lnsl -xarch=v8plusa -dalign -xlibmopt -s \
LINK      :            -o /te/aips/31DEC01/SUL/PREP/AIPSB.EXE
f77: Warning: Option -xarch=v8plusa passed to ld, if ld is invoked, ignored otherwise
/usr/ccs/bin/ld: illegal option -- x
/usr/ccs/bin/ld: illegal option -- x
usage: ld [-abc:d:e:f:h:il:mo:p:rstu:z:B:D:F:GI:L:M:N:P:Q:R:S:VY:] file(s)
	[-a]		create an absolute file
	[-b]		do not do special PIC relocations in a.out
	[-c file]	record configuration `file'
	[-d y|n]	operate in dynamic|static mode
	[-e sym]	use `sym' as entry point address
	[-f name]	specify library for which this file is an auxiliary
			filter
	[-h name]	use `name' as internal shared object identifier
	[-i]		ignore LD_LIBRARY_PATH setting
	[-l x]		search for libx.so or libx.a
	[-m]		print memory map
	[-o outfile]	name the output file `outfile'
	[-p name]	identify audit object to accompany this object
	[-r]		create a relocatable object
	[-s]		strip any symbol and debugging information
	[-t]		do not warn of multiply defined symbols of different
			sizes
	[-u sym]	create an undefined symbol `sym'
	[-z absexec]	when building an executable absolute symbols
 			referenced in dynamic objects are promoted to
 			the executable.
	[-z now]	mark object as requiring non-lazy binding
	[-z defs|nodefs]
			disallow|allow undefined symbols
	[-z endfiltee]	marks a filtee such that it will terminate a filters
			search
	[-z direct]	specify 'direct' bindings for executable when run
	[-z groupperm|nogroupperm]
			enable|disable setting of GROUP permissions
			on dynamic dependencies
	[-z ignore|record]
			ignore|record unused dynamic dependencies
	[-z initfirst]	mark object to indicate that its .init section should
			be executed before the .init section of any other
			objects
	[-z loadfltr]	mark filter as requiring immediate loading of its
			filtees at runtime
	[-z interpose]	dynamic object is to be an `interposer' on
			direct bindings
	[-z lazyload|nolazyload]
			enable|disable delayed loading of shared objects
	[-z muldefs]	allow multiply defined symbols
	[-z nodefaultlib]
			mark object to ignore any default library search path
	[-z nodelete]	mark object as non-deletable
	[-z nodlopen]	mark object as non-dlopen()'able
	[-z nodump]	mark object as non-dldump()'able
	[-z noversion]	don't record any version sections
	[-z origin]	mark object as requiring $ORIGIN processing
	[-z redlocsym]	reduce local syms in .symtab to a minimum
	[-z text]	disallow output relocations against text
	[-z textwarn]	warn if there are relocations against text
	[-z textoff]	allow output relocations against text
	[-z weakextract]
			allow extraction of archive members to resolve weak
			references
	[-z allextract]	extract all member files from archive files
	[-z defaultextract]
			extract member files from archive files
			which resolve undefined or tentative symbols
	[-z combreloc]	combine multiple relocation sections
	[-B dynamic|static]
			search for shared libraries|archives
	[-B group]	relocate object from within group
	[-B eliminate]	eliminate unqualified global
			symbols from the symbol table
	[-B local]	reduce unqualified global symbols to local
	[-B reduce]	process symbol reductions
	[-B symbolic]	bind external references to definitions when creating
			shared objects
	[-B direct]	specify 'direct' bindings for executable when run
	[-B translator]	specify that this object is to act as a 'translator'
			for an application bound with -Bdirect
	[-D options]	print diagnostic messages
	[-F name]	specify library for which this file is a filter
	[-G]		create a shared object
	[-I interp]	use `interp' as path name of interpreter
	[-L path]	search for libraries in directory `path'
	[-M mapfile]	use processing directives contained in `mapfile'
	[-N file]	create a dynamic dependency on `file'
	[-P name]	identify audit object for processing the dependencies
			of this object
	[-Q y|n]	do|do not place version information in output file
	[-R path]	specify a library search path to be used at run time
	[-S name]	specify a link-edit support library
	[-V]		print version information
	[-Y P,dirlist]	use `dirlist' as a default path when searching for
			libraries
LINK      : Status from /opt/local/SUN/SUNWspro/bin/f77 is 1
LINK      : Link of    /te/aips/31DEC01/SUL/PREP/AIPSB.o
LINK      : dies from wimpy compiler
COMLNK    : Link failed!
COMLNK    : Deleted    /te/aips/31DEC01/SUL/PREP/AIPSB.o
COMLNK    : Deleted    /te/aips/31DEC01/SUL/PREP/AIPSB.f
COMLNK    : Date       Wed Apr  3 18:41:34 MST 2002
PP        : Preprocess /te/aips/31DEC01/AIPS/PGM/AIPSC.FOR
PP        : into       /te/aips/31DEC01/SUL/PREP/AIPSC.f
FC        : Date       Wed Apr  3 18:41:36 MST 2002
FC        : Interpret  FC  \
FC        :            /te/aips/31DEC01/SUL/PREP/AIPSC.f
FC        : as         LIST=FALSE PURGE=FALSE
FC        : plus       /opt/local/SUN/SUNWspro/bin/f77 -c -fns -fsimple=1 -xarch=v8plusa -xlibmopt -dalign -ansi -u -ansi -u -O3 \
FC        :            /te/aips/31DEC01/SUL/PREP/AIPSC.f
f77: Warning: Option -fns passed to ld, if ld is invoked, ignored otherwise
f77: Warning: Option -xarch=v8plusa passed to ld, if ld is invoked, ignored otherwise
/te/aips/31DEC01/SUL/PREP/AIPSC.f:
 MAIN aipsc:
"/te/aips/31DEC01/SUL/PREP/AIPSC.f", ANSI extension: compiler flag invokes nonStandard feature
	chstrt:
	chstop:
	cu2:
	cu3a:
	cu8:
	gtlinc:
	interc:
	verbsc:
FC        : Compile of /te/aips/31DEC01/SUL/PREP/AIPSC.f
FC        : ends successfully.
LINK      : Date is... Wed Apr  3 18:41:44 MST 2002
LINK      : Interpret  LINK \
LINK      :            /te/aips/31DEC01/SUL/PREP/AIPSC.o
LINK      : as         PURGE=FALSE REPLACE=TRUE SAVE=TRUE STRIP=TRUE
LINK      : plus       /opt/local/SUN/SUNWspro/bin/f77 \
LINK      :            /te/aips/31DEC01/SUL/PREP/AIPSC.o \
LINK      :            /te/aips/31DEC01/SUL/LIBR/AIPSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/YSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/YSS/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/GNU/libreadline.a \ 
LINK      :            -ltermcap \ 
LINK      :            -lsocket -lnsl -xarch=v8plusa -dalign -xlibmopt -s \
LINK      :            -o /te/aips/31DEC01/SUL/PREP/AIPSC.EXE
f77: Warning: Option -xarch=v8plusa passed to ld, if ld is invoked, ignored otherwise
/usr/ccs/bin/ld: illegal option -- x
/usr/ccs/bin/ld: illegal option -- x
usage: ld [-abc:d:e:f:h:il:mo:p:rstu:z:B:D:F:GI:L:M:N:P:Q:R:S:VY:] file(s)
	[-a]		create an absolute file
	[-b]		do not do special PIC relocations in a.out
	[-c file]	record configuration `file'
	[-d y|n]	operate in dynamic|static mode
	[-e sym]	use `sym' as entry point address
	[-f name]	specify library for which this file is an auxiliary
			filter
	[-h name]	use `name' as internal shared object identifier
	[-i]		ignore LD_LIBRARY_PATH setting
	[-l x]		search for libx.so or libx.a
	[-m]		print memory map
	[-o outfile]	name the output file `outfile'
	[-p name]	identify audit object to accompany this object
	[-r]		create a relocatable object
	[-s]		strip any symbol and debugging information
	[-t]		do not warn of multiply defined symbols of different
			sizes
	[-u sym]	create an undefined symbol `sym'
	[-z absexec]	when building an executable absolute symbols
 			referenced in dynamic objects are promoted to
 			the executable.
	[-z now]	mark object as requiring non-lazy binding
	[-z defs|nodefs]
			disallow|allow undefined symbols
	[-z endfiltee]	marks a filtee such that it will terminate a filters
			search
	[-z direct]	specify 'direct' bindings for executable when run
	[-z groupperm|nogroupperm]
			enable|disable setting of GROUP permissions
			on dynamic dependencies
	[-z ignore|record]
			ignore|record unused dynamic dependencies
	[-z initfirst]	mark object to indicate that its .init section should
			be executed before the .init section of any other
			objects
	[-z loadfltr]	mark filter as requiring immediate loading of its
			filtees at runtime
	[-z interpose]	dynamic object is to be an `interposer' on
			direct bindings
	[-z lazyload|nolazyload]
			enable|disable delayed loading of shared objects
	[-z muldefs]	allow multiply defined symbols
	[-z nodefaultlib]
			mark object to ignore any default library search path
	[-z nodelete]	mark object as non-deletable
	[-z nodlopen]	mark object as non-dlopen()'able
	[-z nodump]	mark object as non-dldump()'able
	[-z noversion]	don't record any version sections
	[-z origin]	mark object as requiring $ORIGIN processing
	[-z redlocsym]	reduce local syms in .symtab to a minimum
	[-z text]	disallow output relocations against text
	[-z textwarn]	warn if there are relocations against text
	[-z textoff]	allow output relocations against text
	[-z weakextract]
			allow extraction of archive members to resolve weak
			references
	[-z allextract]	extract all member files from archive files
	[-z defaultextract]
			extract member files from archive files
			which resolve undefined or tentative symbols
	[-z combreloc]	combine multiple relocation sections
	[-B dynamic|static]
			search for shared libraries|archives
	[-B group]	relocate object from within group
	[-B eliminate]	eliminate unqualified global
			symbols from the symbol table
	[-B local]	reduce unqualified global symbols to local
	[-B reduce]	process symbol reductions
	[-B symbolic]	bind external references to definitions when creating
			shared objects
	[-B direct]	specify 'direct' bindings for executable when run
	[-B translator]	specify that this object is to act as a 'translator'
			for an application bound with -Bdirect
	[-D options]	print diagnostic messages
	[-F name]	specify library for which this file is a filter
	[-G]		create a shared object
	[-I interp]	use `interp' as path name of interpreter
	[-L path]	search for libraries in directory `path'
	[-M mapfile]	use processing directives contained in `mapfile'
	[-N file]	create a dynamic dependency on `file'
	[-P name]	identify audit object for processing the dependencies
			of this object
	[-Q y|n]	do|do not place version information in output file
	[-R path]	specify a library search path to be used at run time
	[-S name]	specify a link-edit support library
	[-V]		print version information
	[-Y P,dirlist]	use `dirlist' as a default path when searching for
			libraries
LINK      : Status from /opt/local/SUN/SUNWspro/bin/f77 is 1
LINK      : Link of    /te/aips/31DEC01/SUL/PREP/AIPSC.o
LINK      : dies from wimpy compiler
COMLNK    : Link failed!
COMLNK    : Deleted    /te/aips/31DEC01/SUL/PREP/AIPSC.o
COMLNK    : Deleted    /te/aips/31DEC01/SUL/PREP/AIPSC.f
COMLNK    : Date       Wed Apr  3 18:41:45 MST 2002
PP        : Preprocess /te/aips/31DEC01/AIPS/PGM/AJAX.FOR
PP        : into       /te/aips/31DEC01/SUL/PREP/AJAX.f
FC        : Date       Wed Apr  3 18:41:46 MST 2002
FC        : Interpret  FC  \
FC        :            /te/aips/31DEC01/SUL/PREP/AJAX.f
FC        : as         LIST=FALSE PURGE=FALSE
FC        : plus       /opt/local/SUN/SUNWspro/bin/f77 -c -fns -fsimple=1 -xarch=v8plusa -xlibmopt -dalign -ansi -u -ansi -u -O3 \
FC        :            /te/aips/31DEC01/SUL/PREP/AJAX.f
f77: Warning: Option -fns passed to ld, if ld is invoked, ignored otherwise
f77: Warning: Option -xarch=v8plusa passed to ld, if ld is invoked, ignored otherwise
/te/aips/31DEC01/SUL/PREP/AJAX.f:
 MAIN ajax:
"/te/aips/31DEC01/SUL/PREP/AJAX.f", ANSI extension: compiler flag invokes nonStandard feature
FC        : Compile of /te/aips/31DEC01/SUL/PREP/AJAX.f
FC        : ends successfully.
LINK      : Date is... Wed Apr  3 18:41:49 MST 2002
LINK      : Interpret  LINK \
LINK      :            /te/aips/31DEC01/SUL/PREP/AJAX.o
LINK      : as         PURGE=FALSE REPLACE=TRUE SAVE=TRUE STRIP=TRUE
LINK      : plus       /opt/local/SUN/SUNWspro/bin/f77 \
LINK      :            /te/aips/31DEC01/SUL/PREP/AJAX.o \
LINK      :            /te/aips/31DEC01/SUL/LIBR/AIPSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/YSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/YSS/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/GNU/libreadline.a \ 
LINK      :            -ltermcap \ 
LINK      :            -lsocket -lnsl -xarch=v8plusa -dalign -xlibmopt -s \
LINK      :            -o /te/aips/31DEC01/SUL/PREP/AJAX.EXE
f77: Warning: Option -xarch=v8plusa passed to ld, if ld is invoked, ignored otherwise
/usr/ccs/bin/ld: illegal option -- x
/usr/ccs/bin/ld: illegal option -- x
usage: ld [-abc:d:e:f:h:il:mo:p:rstu:z:B:D:F:GI:L:M:N:P:Q:R:S:VY:] file(s)
	[-a]		create an absolute file
	[-b]		do not do special PIC relocations in a.out
	[-c file]	record configuration `file'
	[-d y|n]	operate in dynamic|static mode
	[-e sym]	use `sym' as entry point address
	[-f name]	specify library for which this file is an auxiliary
			filter
	[-h name]	use `name' as internal shared object identifier
	[-i]		ignore LD_LIBRARY_PATH setting
	[-l x]		search for libx.so or libx.a
	[-m]		print memory map
	[-o outfile]	name the output file `outfile'
	[-p name]	identify audit object to accompany this object
	[-r]		create a relocatable object
	[-s]		strip any symbol and debugging information
	[-t]		do not warn of multiply defined symbols of different
			sizes
	[-u sym]	create an undefined symbol `sym'
	[-z absexec]	when building an executable absolute symbols
 			referenced in dynamic objects are promoted to
 			the executable.
	[-z now]	mark object as requiring non-lazy binding
	[-z defs|nodefs]
			disallow|allow undefined symbols
	[-z endfiltee]	marks a filtee such that it will terminate a filters
			search
	[-z direct]	specify 'direct' bindings for executable when run
	[-z groupperm|nogroupperm]
			enable|disable setting of GROUP permissions
			on dynamic dependencies
	[-z ignore|record]
			ignore|record unused dynamic dependencies
	[-z initfirst]	mark object to indicate that its .init section should
			be executed before the .init section of any other
			objects
	[-z loadfltr]	mark filter as requiring immediate loading of its
			filtees at runtime
	[-z interpose]	dynamic object is to be an `interposer' on
			direct bindings
	[-z lazyload|nolazyload]
			enable|disable delayed loading of shared objects
	[-z muldefs]	allow multiply defined symbols
	[-z nodefaultlib]
			mark object to ignore any default library search path
	[-z nodelete]	mark object as non-deletable
	[-z nodlopen]	mark object as non-dlopen()'able
	[-z nodump]	mark object as non-dldump()'able
	[-z noversion]	don't record any version sections
	[-z origin]	mark object as requiring $ORIGIN processing
	[-z redlocsym]	reduce local syms in .symtab to a minimum
	[-z text]	disallow output relocations against text
	[-z textwarn]	warn if there are relocations against text
	[-z textoff]	allow output relocations against text
	[-z weakextract]
			allow extraction of archive members to resolve weak
			references
	[-z allextract]	extract all member files from archive files
	[-z defaultextract]
			extract member files from archive files
			which resolve undefined or tentative symbols
	[-z combreloc]	combine multiple relocation sections
	[-B dynamic|static]
			search for shared libraries|archives
	[-B group]	relocate object from within group
	[-B eliminate]	eliminate unqualified global
			symbols from the symbol table
	[-B local]	reduce unqualified global symbols to local
	[-B reduce]	process symbol reductions
	[-B symbolic]	bind external references to definitions when creating
			shared objects
	[-B direct]	specify 'direct' bindings for executable when run
	[-B translator]	specify that this object is to act as a 'translator'
			for an application bound with -Bdirect
	[-D options]	print diagnostic messages
	[-F name]	specify library for which this file is a filter
	[-G]		create a shared object
	[-I interp]	use `interp' as path name of interpreter
	[-L path]	search for libraries in directory `path'
	[-M mapfile]	use processing directives contained in `mapfile'
	[-N file]	create a dynamic dependency on `file'
	[-P name]	identify audit object for processing the dependencies
			of this object
	[-Q y|n]	do|do not place version information in output file
	[-R path]	specify a library search path to be used at run time
	[-S name]	specify a link-edit support library
	[-V]		print version information
	[-Y P,dirlist]	use `dirlist' as a default path when searching for
			libraries
LINK      : Status from /opt/local/SUN/SUNWspro/bin/f77 is 1
LINK      : Link of    /te/aips/31DEC01/SUL/PREP/AJAX.o
LINK      : dies from wimpy compiler
COMLNK    : Link failed!
COMLNK    : Deleted    /te/aips/31DEC01/SUL/PREP/AJAX.o
COMLNK    : Deleted    /te/aips/31DEC01/SUL/PREP/AJAX.f
COMLNK    : Date       Wed Apr  3 18:41:50 MST 2002
PP        : Preprocess /te/aips/31DEC01/AIPS/PGM/BATER.FOR
PP        : into       /te/aips/31DEC01/SUL/PREP/BATER.f
FC        : Date       Wed Apr  3 18:41:52 MST 2002
FC        : Interpret  FC  \
FC        :            /te/aips/31DEC01/SUL/PREP/BATER.f
FC        : as         LIST=FALSE PURGE=FALSE
FC        : plus       /opt/local/SUN/SUNWspro/bin/f77 -c -fns -fsimple=1 -xarch=v8plusa -xlibmopt -dalign -ansi -u -ansi -u -O3 \
FC        :            /te/aips/31DEC01/SUL/PREP/BATER.f
f77: Warning: Option -fns passed to ld, if ld is invoked, ignored otherwise
f77: Warning: Option -xarch=v8plusa passed to ld, if ld is invoked, ignored otherwise
/te/aips/31DEC01/SUL/PREP/BATER.f:
 MAIN bater:
"/te/aips/31DEC01/SUL/PREP/BATER.f", ANSI extension: compiler flag invokes nonStandard feature
	batgtl:
	batini:
	batint:
	batpol:
	cua:
	cub:
FC        : Compile of /te/aips/31DEC01/SUL/PREP/BATER.f
FC        : ends successfully.
LINK      : Date is... Wed Apr  3 18:42:00 MST 2002
LINK      : Interpret  LINK \
LINK      :            /te/aips/31DEC01/SUL/PREP/BATER.o
LINK      : as         PURGE=FALSE REPLACE=TRUE SAVE=TRUE STRIP=TRUE
LINK      : plus       /opt/local/SUN/SUNWspro/bin/f77 \
LINK      :            /te/aips/31DEC01/SUL/PREP/BATER.o \
LINK      :            /te/aips/31DEC01/SUL/LIBR/AIPSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/YSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/YSS/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/GNU/libreadline.a \ 
LINK      :            -ltermcap \ 
LINK      :            -lsocket -lnsl -xarch=v8plusa -dalign -xlibmopt -s \
LINK      :            -o /te/aips/31DEC01/SUL/PREP/BATER.EXE
f77: Warning: Option -xarch=v8plusa passed to ld, if ld is invoked, ignored otherwise
/usr/ccs/bin/ld: illegal option -- x
/usr/ccs/bin/ld: illegal option -- x
usage: ld [-abc:d:e:f:h:il:mo:p:rstu:z:B:D:F:GI:L:M:N:P:Q:R:S:VY:] file(s)
	[-a]		create an absolute file
	[-b]		do not do special PIC relocations in a.out
	[-c file]	record configuration `file'
	[-d y|n]	operate in dynamic|static mode
	[-e sym]	use `sym' as entry point address
	[-f name]	specify library for which this file is an auxiliary
			filter
	[-h name]	use `name' as internal shared object identifier
	[-i]		ignore LD_LIBRARY_PATH setting
	[-l x]		search for libx.so or libx.a
	[-m]		print memory map
	[-o outfile]	name the output file `outfile'
	[-p name]	identify audit object to accompany this object
	[-r]		create a relocatable object
	[-s]		strip any symbol and debugging information
	[-t]		do not warn of multiply defined symbols of different
			sizes
	[-u sym]	create an undefined symbol `sym'
	[-z absexec]	when building an executable absolute symbols
 			referenced in dynamic objects are promoted to
 			the executable.
	[-z now]	mark object as requiring non-lazy binding
	[-z defs|nodefs]
			disallow|allow undefined symbols
	[-z endfiltee]	marks a filtee such that it will terminate a filters
			search
	[-z direct]	specify 'direct' bindings for executable when run
	[-z groupperm|nogroupperm]
			enable|disable setting of GROUP permissions
			on dynamic dependencies
	[-z ignore|record]
			ignore|record unused dynamic dependencies
	[-z initfirst]	mark object to indicate that its .init section should
			be executed before the .init section of any other
			objects
	[-z loadfltr]	mark filter as requiring immediate loading of its
			filtees at runtime
	[-z interpose]	dynamic object is to be an `interposer' on
			direct bindings
	[-z lazyload|nolazyload]
			enable|disable delayed loading of shared objects
	[-z muldefs]	allow multiply defined symbols
	[-z nodefaultlib]
			mark object to ignore any default library search path
	[-z nodelete]	mark object as non-deletable
	[-z nodlopen]	mark object as non-dlopen()'able
	[-z nodump]	mark object as non-dldump()'able
	[-z noversion]	don't record any version sections
	[-z origin]	mark object as requiring $ORIGIN processing
	[-z redlocsym]	reduce local syms in .symtab to a minimum
	[-z text]	disallow output relocations against text
	[-z textwarn]	warn if there are relocations against text
	[-z textoff]	allow output relocations against text
	[-z weakextract]
			allow extraction of archive members to resolve weak
			references
	[-z allextract]	extract all member files from archive files
	[-z defaultextract]
			extract member files from archive files
			which resolve undefined or tentative symbols
	[-z combreloc]	combine multiple relocation sections
	[-B dynamic|static]
			search for shared libraries|archives
	[-B group]	relocate object from within group
	[-B eliminate]	eliminate unqualified global
			symbols from the symbol table
	[-B local]	reduce unqualified global symbols to local
	[-B reduce]	process symbol reductions
	[-B symbolic]	bind external references to definitions when creating
			shared objects
	[-B direct]	specify 'direct' bindings for executable when run
	[-B translator]	specify that this object is to act as a 'translator'
			for an application bound with -Bdirect
	[-D options]	print diagnostic messages
	[-F name]	specify library for which this file is a filter
	[-G]		create a shared object
	[-I interp]	use `interp' as path name of interpreter
	[-L path]	search for libraries in directory `path'
	[-M mapfile]	use processing directives contained in `mapfile'
	[-N file]	create a dynamic dependency on `file'
	[-P name]	identify audit object for processing the dependencies
			of this object
	[-Q y|n]	do|do not place version information in output file
	[-R path]	specify a library search path to be used at run time
	[-S name]	specify a link-edit support library
	[-V]		print version information
	[-Y P,dirlist]	use `dirlist' as a default path when searching for
			libraries
LINK      : Status from /opt/local/SUN/SUNWspro/bin/f77 is 1
LINK      : Link of    /te/aips/31DEC01/SUL/PREP/BATER.o
LINK      : dies from wimpy compiler
COMLNK    : Link failed!
COMLNK    : Deleted    /te/aips/31DEC01/SUL/PREP/BATER.o
COMLNK    : Deleted    /te/aips/31DEC01/SUL/PREP/BATER.f
COMLNK    : Date       Wed Apr  3 18:42:02 MST 2002
PP        : Preprocess /te/aips/31DEC01/AIPS/PGM/BSTRT1.FOR
PP        : into       /te/aips/31DEC01/SUL/PREP/BSTRT1.f
FC        : Date       Wed Apr  3 18:42:03 MST 2002
FC        : Interpret  FC  \
FC        :            /te/aips/31DEC01/SUL/PREP/BSTRT1.f
FC        : as         LIST=FALSE PURGE=FALSE
FC        : plus       /opt/local/SUN/SUNWspro/bin/f77 -c -fns -fsimple=1 -xarch=v8plusa -xlibmopt -dalign -ansi -u -ansi -u -O3 \
FC        :            /te/aips/31DEC01/SUL/PREP/BSTRT1.f
f77: Warning: Option -fns passed to ld, if ld is invoked, ignored otherwise
f77: Warning: Option -xarch=v8plusa passed to ld, if ld is invoked, ignored otherwise
/te/aips/31DEC01/SUL/PREP/BSTRT1.f:
 MAIN bstrt1:
"/te/aips/31DEC01/SUL/PREP/BSTRT1.f", ANSI extension: compiler flag invokes nonStandard feature
FC        : Compile of /te/aips/31DEC01/SUL/PREP/BSTRT1.f
FC        : ends successfully.
LINK      : Date is... Wed Apr  3 18:42:06 MST 2002
LINK      : Interpret  LINK \
LINK      :            /te/aips/31DEC01/SUL/PREP/BSTRT1.o
LINK      : as         PURGE=FALSE REPLACE=TRUE SAVE=TRUE STRIP=TRUE
LINK      : plus       /opt/local/SUN/SUNWspro/bin/f77 \
LINK      :            /te/aips/31DEC01/SUL/PREP/BSTRT1.o \
LINK      :            /te/aips/31DEC01/SUL/LIBR/AIPSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/YSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/YSS/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/GNU/libreadline.a \ 
LINK      :            -ltermcap \ 
LINK      :            -lsocket -lnsl -xarch=v8plusa -dalign -xlibmopt -s \
LINK      :            -o /te/aips/31DEC01/SUL/PREP/BSTRT1.EXE
f77: Warning: Option -xarch=v8plusa passed to ld, if ld is invoked, ignored otherwise
/usr/ccs/bin/ld: illegal option -- x
/usr/ccs/bin/ld: illegal option -- x
usage: ld [-abc:d:e:f:h:il:mo:p:rstu:z:B:D:F:GI:L:M:N:P:Q:R:S:VY:] file(s)
	[-a]		create an absolute file
	[-b]		do not do special PIC relocations in a.out
	[-c file]	record configuration `file'
	[-d y|n]	operate in dynamic|static mode
	[-e sym]	use `sym' as entry point address
	[-f name]	specify library for which this file is an auxiliary
			filter
	[-h name]	use `name' as internal shared object identifier
	[-i]		ignore LD_LIBRARY_PATH setting
	[-l x]		search for libx.so or libx.a
	[-m]		print memory map
	[-o outfile]	name the output file `outfile'
	[-p name]	identify audit object to accompany this object
	[-r]		create a relocatable object
	[-s]		strip any symbol and debugging information
	[-t]		do not warn of multiply defined symbols of different
			sizes
	[-u sym]	create an undefined symbol `sym'
	[-z absexec]	when building an executable absolute symbols
 			referenced in dynamic objects are promoted to
 			the executable.
	[-z now]	mark object as requiring non-lazy binding
	[-z defs|nodefs]
			disallow|allow undefined symbols
	[-z endfiltee]	marks a filtee such that it will terminate a filters
			search
	[-z direct]	specify 'direct' bindings for executable when run
	[-z groupperm|nogroupperm]
			enable|disable setting of GROUP permissions
			on dynamic dependencies
	[-z ignore|record]
			ignore|record unused dynamic dependencies
	[-z initfirst]	mark object to indicate that its .init section should
			be executed before the .init section of any other
			objects
	[-z loadfltr]	mark filter as requiring immediate loading of its
			filtees at runtime
	[-z interpose]	dynamic object is to be an `interposer' on
			direct bindings
	[-z lazyload|nolazyload]
			enable|disable delayed loading of shared objects
	[-z muldefs]	allow multiply defined symbols
	[-z nodefaultlib]
			mark object to ignore any default library search path
	[-z nodelete]	mark object as non-deletable
	[-z nodlopen]	mark object as non-dlopen()'able
	[-z nodump]	mark object as non-dldump()'able
	[-z noversion]	don't record any version sections
	[-z origin]	mark object as requiring $ORIGIN processing
	[-z redlocsym]	reduce local syms in .symtab to a minimum
	[-z text]	disallow output relocations against text
	[-z textwarn]	warn if there are relocations against text
	[-z textoff]	allow output relocations against text
	[-z weakextract]
			allow extraction of archive members to resolve weak
			references
	[-z allextract]	extract all member files from archive files
	[-z defaultextract]
			extract member files from archive files
			which resolve undefined or tentative symbols
	[-z combreloc]	combine multiple relocation sections
	[-B dynamic|static]
			search for shared libraries|archives
	[-B group]	relocate object from within group
	[-B eliminate]	eliminate unqualified global
			symbols from the symbol table
	[-B local]	reduce unqualified global symbols to local
	[-B reduce]	process symbol reductions
	[-B symbolic]	bind external references to definitions when creating
			shared objects
	[-B direct]	specify 'direct' bindings for executable when run
	[-B translator]	specify that this object is to act as a 'translator'
			for an application bound with -Bdirect
	[-D options]	print diagnostic messages
	[-F name]	specify library for which this file is a filter
	[-G]		create a shared object
	[-I interp]	use `interp' as path name of interpreter
	[-L path]	search for libraries in directory `path'
	[-M mapfile]	use processing directives contained in `mapfile'
	[-N file]	create a dynamic dependency on `file'
	[-P name]	identify audit object for processing the dependencies
			of this object
	[-Q y|n]	do|do not place version information in output file
	[-R path]	specify a library search path to be used at run time
	[-S name]	specify a link-edit support library
	[-V]		print version information
	[-Y P,dirlist]	use `dirlist' as a default path when searching for
			libraries
LINK      : Status from /opt/local/SUN/SUNWspro/bin/f77 is 1
LINK      : Link of    /te/aips/31DEC01/SUL/PREP/BSTRT1.o
LINK      : dies from wimpy compiler
COMLNK    : Link failed!
COMLNK    : Deleted    /te/aips/31DEC01/SUL/PREP/BSTRT1.o
COMLNK    : Deleted    /te/aips/31DEC01/SUL/PREP/BSTRT1.f
COMLNK    : Date       Wed Apr  3 18:42:07 MST 2002
PP        : Preprocess /te/aips/31DEC01/AIPS/PGM/DAIP.FOR
PP        : into       /te/aips/31DEC01/SUL/PREP/DAIP.f
FC        : Date       Wed Apr  3 18:42:09 MST 2002
FC        : Interpret  FC  \
FC        :            /te/aips/31DEC01/SUL/PREP/DAIP.f
FC        : as         LIST=FALSE PURGE=FALSE
FC        : plus       /opt/local/SUN/SUNWspro/bin/f77 -c -fns -fsimple=1 -xarch=v8plusa -xlibmopt -dalign -ansi -u -ansi -u -O3 \
FC        :            /te/aips/31DEC01/SUL/PREP/DAIP.f
f77: Warning: Option -fns passed to ld, if ld is invoked, ignored otherwise
f77: Warning: Option -xarch=v8plusa passed to ld, if ld is invoked, ignored otherwise
/te/aips/31DEC01/SUL/PREP/DAIP.f:
 MAIN daip:
"/te/aips/31DEC01/SUL/PREP/DAIP.f", ANSI extension: compiler flag invokes nonStandard feature
	aipbeg:
	aiperr:
	gtline:
	interp:
	verbs:
	ipcxdr:
	getusr:
FC        : Compile of /te/aips/31DEC01/SUL/PREP/DAIP.f
FC        : ends successfully.
LINK      : Date is... Wed Apr  3 18:42:12 MST 2002
LINK      : Interpret  LINK \
LINK      :            /te/aips/31DEC01/SUL/PREP/DAIP.o
LINK      : as         PURGE=FALSE REPLACE=TRUE SAVE=TRUE STRIP=TRUE
LINK      : plus       /opt/local/SUN/SUNWspro/bin/f77 \
LINK      :            /te/aips/31DEC01/SUL/PREP/DAIP.o \
LINK      :            /te/aips/31DEC01/SUL/LIBR/AIPSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/YSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/YSS/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/GNU/libreadline.a \ 
LINK      :            -ltermcap \ 
LINK      :            -lsocket -lnsl -xarch=v8plusa -dalign -xlibmopt -s \
LINK      :            -o /te/aips/31DEC01/SUL/PREP/DAIP.EXE
f77: Warning: Option -xarch=v8plusa passed to ld, if ld is invoked, ignored otherwise
/usr/ccs/bin/ld: illegal option -- x
/usr/ccs/bin/ld: illegal option -- x
usage: ld [-abc:d:e:f:h:il:mo:p:rstu:z:B:D:F:GI:L:M:N:P:Q:R:S:VY:] file(s)
	[-a]		create an absolute file
	[-b]		do not do special PIC relocations in a.out
	[-c file]	record configuration `file'
	[-d y|n]	operate in dynamic|static mode
	[-e sym]	use `sym' as entry point address
	[-f name]	specify library for which this file is an auxiliary
			filter
	[-h name]	use `name' as internal shared object identifier
	[-i]		ignore LD_LIBRARY_PATH setting
	[-l x]		search for libx.so or libx.a
	[-m]		print memory map
	[-o outfile]	name the output file `outfile'
	[-p name]	identify audit object to accompany this object
	[-r]		create a relocatable object
	[-s]		strip any symbol and debugging information
	[-t]		do not warn of multiply defined symbols of different
			sizes
	[-u sym]	create an undefined symbol `sym'
	[-z absexec]	when building an executable absolute symbols
 			referenced in dynamic objects are promoted to
 			the executable.
	[-z now]	mark object as requiring non-lazy binding
	[-z defs|nodefs]
			disallow|allow undefined symbols
	[-z endfiltee]	marks a filtee such that it will terminate a filters
			search
	[-z direct]	specify 'direct' bindings for executable when run
	[-z groupperm|nogroupperm]
			enable|disable setting of GROUP permissions
			on dynamic dependencies
	[-z ignore|record]
			ignore|record unused dynamic dependencies
	[-z initfirst]	mark object to indicate that its .init section should
			be executed before the .init section of any other
			objects
	[-z loadfltr]	mark filter as requiring immediate loading of its
			filtees at runtime
	[-z interpose]	dynamic object is to be an `interposer' on
			direct bindings
	[-z lazyload|nolazyload]
			enable|disable delayed loading of shared objects
	[-z muldefs]	allow multiply defined symbols
	[-z nodefaultlib]
			mark object to ignore any default library search path
	[-z nodelete]	mark object as non-deletable
	[-z nodlopen]	mark object as non-dlopen()'able
	[-z nodump]	mark object as non-dldump()'able
	[-z noversion]	don't record any version sections
	[-z origin]	mark object as requiring $ORIGIN processing
	[-z redlocsym]	reduce local syms in .symtab to a minimum
	[-z text]	disallow output relocations against text
	[-z textwarn]	warn if there are relocations against text
	[-z textoff]	allow output relocations against text
	[-z weakextract]
			allow extraction of archive members to resolve weak
			references
	[-z allextract]	extract all member files from archive files
	[-z defaultextract]
			extract member files from archive files
			which resolve undefined or tentative symbols
	[-z combreloc]	combine multiple relocation sections
	[-B dynamic|static]
			search for shared libraries|archives
	[-B group]	relocate object from within group
	[-B eliminate]	eliminate unqualified global
			symbols from the symbol table
	[-B local]	reduce unqualified global symbols to local
	[-B reduce]	process symbol reductions
	[-B symbolic]	bind external references to definitions when creating
			shared objects
	[-B direct]	specify 'direct' bindings for executable when run
	[-B translator]	specify that this object is to act as a 'translator'
			for an application bound with -Bdirect
	[-D options]	print diagnostic messages
	[-F name]	specify library for which this file is a filter
	[-G]		create a shared object
	[-I interp]	use `interp' as path name of interpreter
	[-L path]	search for libraries in directory `path'
	[-M mapfile]	use processing directives contained in `mapfile'
	[-N file]	create a dynamic dependency on `file'
	[-P name]	identify audit object for processing the dependencies
			of this object
	[-Q y|n]	do|do not place version information in output file
	[-R path]	specify a library search path to be used at run time
	[-S name]	specify a link-edit support library
	[-V]		print version information
	[-Y P,dirlist]	use `dirlist' as a default path when searching for
			libraries
LINK      : Status from /opt/local/SUN/SUNWspro/bin/f77 is 1
LINK      : Link of    /te/aips/31DEC01/SUL/PREP/DAIP.o
LINK      : dies from wimpy compiler
COMLNK    : Link failed!
COMLNK    : Deleted    /te/aips/31DEC01/SUL/PREP/DAIP.o
COMLNK    : Deleted    /te/aips/31DEC01/SUL/PREP/DAIP.f
COMLNK    : Date       Wed Apr  3 18:42:13 MST 2002
PP        : Preprocess /te/aips/31DEC01/AIPS/PGM/FILAI2.FOR
PP        : into       /te/aips/31DEC01/SUL/PREP/FILAI2.f
FC        : Date       Wed Apr  3 18:42:15 MST 2002
FC        : Interpret  FC  \
FC        :            /te/aips/31DEC01/SUL/PREP/FILAI2.f
FC        : as         LIST=FALSE PURGE=FALSE
FC        : plus       /opt/local/SUN/SUNWspro/bin/f77 -c -fns -fsimple=1 -xarch=v8plusa -xlibmopt -dalign -ansi -u -ansi -u -O3 \
FC        :            /te/aips/31DEC01/SUL/PREP/FILAI2.f
f77: Warning: Option -fns passed to ld, if ld is invoked, ignored otherwise
f77: Warning: Option -xarch=v8plusa passed to ld, if ld is invoked, ignored otherwise
/te/aips/31DEC01/SUL/PREP/FILAI2.f:
 MAIN filai2:
"/te/aips/31DEC01/SUL/PREP/FILAI2.f", ANSI extension: compiler flag invokes nonStandard feature
FC        : Compile of /te/aips/31DEC01/SUL/PREP/FILAI2.f
FC        : ends successfully.
LINK      : Date is... Wed Apr  3 18:42:21 MST 2002
LINK      : Interpret  LINK \
LINK      :            /te/aips/31DEC01/SUL/PREP/FILAI2.o
LINK      : as         PURGE=FALSE REPLACE=TRUE SAVE=TRUE STRIP=TRUE
LINK      : plus       /opt/local/SUN/SUNWspro/bin/f77 \
LINK      :            /te/aips/31DEC01/SUL/PREP/FILAI2.o \
LINK      :            /te/aips/31DEC01/SUL/LIBR/AIPSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/YSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/YSS/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/GNU/libreadline.a \ 
LINK      :            -ltermcap \ 
LINK      :            -lsocket -lnsl -xarch=v8plusa -dalign -xlibmopt -s \
LINK      :            -o /te/aips/31DEC01/SUL/PREP/FILAI2.EXE
f77: Warning: Option -xarch=v8plusa passed to ld, if ld is invoked, ignored otherwise
/usr/ccs/bin/ld: illegal option -- x
/usr/ccs/bin/ld: illegal option -- x
usage: ld [-abc:d:e:f:h:il:mo:p:rstu:z:B:D:F:GI:L:M:N:P:Q:R:S:VY:] file(s)
	[-a]		create an absolute file
	[-b]		do not do special PIC relocations in a.out
	[-c file]	record configuration `file'
	[-d y|n]	operate in dynamic|static mode
	[-e sym]	use `sym' as entry point address
	[-f name]	specify library for which this file is an auxiliary
			filter
	[-h name]	use `name' as internal shared object identifier
	[-i]		ignore LD_LIBRARY_PATH setting
	[-l x]		search for libx.so or libx.a
	[-m]		print memory map
	[-o outfile]	name the output file `outfile'
	[-p name]	identify audit object to accompany this object
	[-r]		create a relocatable object
	[-s]		strip any symbol and debugging information
	[-t]		do not warn of multiply defined symbols of different
			sizes
	[-u sym]	create an undefined symbol `sym'
	[-z absexec]	when building an executable absolute symbols
 			referenced in dynamic objects are promoted to
 			the executable.
	[-z now]	mark object as requiring non-lazy binding
	[-z defs|nodefs]
			disallow|allow undefined symbols
	[-z endfiltee]	marks a filtee such that it will terminate a filters
			search
	[-z direct]	specify 'direct' bindings for executable when run
	[-z groupperm|nogroupperm]
			enable|disable setting of GROUP permissions
			on dynamic dependencies
	[-z ignore|record]
			ignore|record unused dynamic dependencies
	[-z initfirst]	mark object to indicate that its .init section should
			be executed before the .init section of any other
			objects
	[-z loadfltr]	mark filter as requiring immediate loading of its
			filtees at runtime
	[-z interpose]	dynamic object is to be an `interposer' on
			direct bindings
	[-z lazyload|nolazyload]
			enable|disable delayed loading of shared objects
	[-z muldefs]	allow multiply defined symbols
	[-z nodefaultlib]
			mark object to ignore any default library search path
	[-z nodelete]	mark object as non-deletable
	[-z nodlopen]	mark object as non-dlopen()'able
	[-z nodump]	mark object as non-dldump()'able
	[-z noversion]	don't record any version sections
	[-z origin]	mark object as requiring $ORIGIN processing
	[-z redlocsym]	reduce local syms in .symtab to a minimum
	[-z text]	disallow output relocations against text
	[-z textwarn]	warn if there are relocations against text
	[-z textoff]	allow output relocations against text
	[-z weakextract]
			allow extraction of archive members to resolve weak
			references
	[-z allextract]	extract all member files from archive files
	[-z defaultextract]
			extract member files from archive files
			which resolve undefined or tentative symbols
	[-z combreloc]	combine multiple relocation sections
	[-B dynamic|static]
			search for shared libraries|archives
	[-B group]	relocate object from within group
	[-B eliminate]	eliminate unqualified global
			symbols from the symbol table
	[-B local]	reduce unqualified global symbols to local
	[-B reduce]	process symbol reductions
	[-B symbolic]	bind external references to definitions when creating
			shared objects
	[-B direct]	specify 'direct' bindings for executable when run
	[-B translator]	specify that this object is to act as a 'translator'
			for an application bound with -Bdirect
	[-D options]	print diagnostic messages
	[-F name]	specify library for which this file is a filter
	[-G]		create a shared object
	[-I interp]	use `interp' as path name of interpreter
	[-L path]	search for libraries in directory `path'
	[-M mapfile]	use processing directives contained in `mapfile'
	[-N file]	create a dynamic dependency on `file'
	[-P name]	identify audit object for processing the dependencies
			of this object
	[-Q y|n]	do|do not place version information in output file
	[-R path]	specify a library search path to be used at run time
	[-S name]	specify a link-edit support library
	[-V]		print version information
	[-Y P,dirlist]	use `dirlist' as a default path when searching for
			libraries
LINK      : Status from /opt/local/SUN/SUNWspro/bin/f77 is 1
LINK      : Link of    /te/aips/31DEC01/SUL/PREP/FILAI2.o
LINK      : dies from wimpy compiler
COMLNK    : Link failed!
COMLNK    : Deleted    /te/aips/31DEC01/SUL/PREP/FILAI2.o
COMLNK    : Deleted    /te/aips/31DEC01/SUL/PREP/FILAI2.f
COMLNK    : Date       Wed Apr  3 18:42:22 MST 2002
PP        : Preprocess /te/aips/31DEC01/AIPS/PGM/FILAIP.FOR
PP        : into       /te/aips/31DEC01/SUL/PREP/FILAIP.f
FC        : Date       Wed Apr  3 18:42:24 MST 2002
FC        : Interpret  FC  \
FC        :            /te/aips/31DEC01/SUL/PREP/FILAIP.f
FC        : as         LIST=FALSE PURGE=FALSE
FC        : plus       /opt/local/SUN/SUNWspro/bin/f77 -c -fns -fsimple=1 -xarch=v8plusa -xlibmopt -dalign -ansi -u -ansi -u -O3 \
FC        :            /te/aips/31DEC01/SUL/PREP/FILAIP.f
f77: Warning: Option -fns passed to ld, if ld is invoked, ignored otherwise
f77: Warning: Option -xarch=v8plusa passed to ld, if ld is invoked, ignored otherwise
/te/aips/31DEC01/SUL/PREP/FILAIP.f:
 MAIN filaip:
"/te/aips/31DEC01/SUL/PREP/FILAIP.f", ANSI extension: compiler flag invokes nonStandard feature
FC        : Compile of /te/aips/31DEC01/SUL/PREP/FILAIP.f
FC        : ends successfully.
LINK      : Date is... Wed Apr  3 18:42:29 MST 2002
LINK      : Interpret  LINK \
LINK      :            /te/aips/31DEC01/SUL/PREP/FILAIP.o
LINK      : as         PURGE=FALSE REPLACE=TRUE SAVE=TRUE STRIP=TRUE
LINK      : plus       /opt/local/SUN/SUNWspro/bin/f77 \
LINK      :            /te/aips/31DEC01/SUL/PREP/FILAIP.o \
LINK      :            /te/aips/31DEC01/SUL/LIBR/AIPSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/YSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/YSS/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/GNU/libreadline.a \ 
LINK      :            -ltermcap \ 
LINK      :            -lsocket -lnsl -xarch=v8plusa -dalign -xlibmopt -s \
LINK      :            -o /te/aips/31DEC01/SUL/PREP/FILAIP.EXE
f77: Warning: Option -xarch=v8plusa passed to ld, if ld is invoked, ignored otherwise
/usr/ccs/bin/ld: illegal option -- x
/usr/ccs/bin/ld: illegal option -- x
usage: ld [-abc:d:e:f:h:il:mo:p:rstu:z:B:D:F:GI:L:M:N:P:Q:R:S:VY:] file(s)
	[-a]		create an absolute file
	[-b]		do not do special PIC relocations in a.out
	[-c file]	record configuration `file'
	[-d y|n]	operate in dynamic|static mode
	[-e sym]	use `sym' as entry point address
	[-f name]	specify library for which this file is an auxiliary
			filter
	[-h name]	use `name' as internal shared object identifier
	[-i]		ignore LD_LIBRARY_PATH setting
	[-l x]		search for libx.so or libx.a
	[-m]		print memory map
	[-o outfile]	name the output file `outfile'
	[-p name]	identify audit object to accompany this object
	[-r]		create a relocatable object
	[-s]		strip any symbol and debugging information
	[-t]		do not warn of multiply defined symbols of different
			sizes
	[-u sym]	create an undefined symbol `sym'
	[-z absexec]	when building an executable absolute symbols
 			referenced in dynamic objects are promoted to
 			the executable.
	[-z now]	mark object as requiring non-lazy binding
	[-z defs|nodefs]
			disallow|allow undefined symbols
	[-z endfiltee]	marks a filtee such that it will terminate a filters
			search
	[-z direct]	specify 'direct' bindings for executable when run
	[-z groupperm|nogroupperm]
			enable|disable setting of GROUP permissions
			on dynamic dependencies
	[-z ignore|record]
			ignore|record unused dynamic dependencies
	[-z initfirst]	mark object to indicate that its .init section should
			be executed before the .init section of any other
			objects
	[-z loadfltr]	mark filter as requiring immediate loading of its
			filtees at runtime
	[-z interpose]	dynamic object is to be an `interposer' on
			direct bindings
	[-z lazyload|nolazyload]
			enable|disable delayed loading of shared objects
	[-z muldefs]	allow multiply defined symbols
	[-z nodefaultlib]
			mark object to ignore any default library search path
	[-z nodelete]	mark object as non-deletable
	[-z nodlopen]	mark object as non-dlopen()'able
	[-z nodump]	mark object as non-dldump()'able
	[-z noversion]	don't record any version sections
	[-z origin]	mark object as requiring $ORIGIN processing
	[-z redlocsym]	reduce local syms in .symtab to a minimum
	[-z text]	disallow output relocations against text
	[-z textwarn]	warn if there are relocations against text
	[-z textoff]	allow output relocations against text
	[-z weakextract]
			allow extraction of archive members to resolve weak
			references
	[-z allextract]	extract all member files from archive files
	[-z defaultextract]
			extract member files from archive files
			which resolve undefined or tentative symbols
	[-z combreloc]	combine multiple relocation sections
	[-B dynamic|static]
			search for shared libraries|archives
	[-B group]	relocate object from within group
	[-B eliminate]	eliminate unqualified global
			symbols from the symbol table
	[-B local]	reduce unqualified global symbols to local
	[-B reduce]	process symbol reductions
	[-B symbolic]	bind external references to definitions when creating
			shared objects
	[-B direct]	specify 'direct' bindings for executable when run
	[-B translator]	specify that this object is to act as a 'translator'
			for an application bound with -Bdirect
	[-D options]	print diagnostic messages
	[-F name]	specify library for which this file is a filter
	[-G]		create a shared object
	[-I interp]	use `interp' as path name of interpreter
	[-L path]	search for libraries in directory `path'
	[-M mapfile]	use processing directives contained in `mapfile'
	[-N file]	create a dynamic dependency on `file'
	[-P name]	identify audit object for processing the dependencies
			of this object
	[-Q y|n]	do|do not place version information in output file
	[-R path]	specify a library search path to be used at run time
	[-S name]	specify a link-edit support library
	[-V]		print version information
	[-Y P,dirlist]	use `dirlist' as a default path when searching for
			libraries
LINK      : Status from /opt/local/SUN/SUNWspro/bin/f77 is 1
LINK      : Link of    /te/aips/31DEC01/SUL/PREP/FILAIP.o
LINK      : dies from wimpy compiler
COMLNK    : Link failed!
COMLNK    : Deleted    /te/aips/31DEC01/SUL/PREP/FILAIP.o
COMLNK    : Deleted    /te/aips/31DEC01/SUL/PREP/FILAIP.f
COMLNK    : Date       Wed Apr  3 18:42:30 MST 2002
PP        : Preprocess /te/aips/31DEC01/AIPS/PGM/FILINI.FOR
PP        : into       /te/aips/31DEC01/SUL/PREP/FILINI.f
FC        : Date       Wed Apr  3 18:42:32 MST 2002
FC        : Interpret  FC  \
FC        :            /te/aips/31DEC01/SUL/PREP/FILINI.f
FC        : as         LIST=FALSE PURGE=FALSE
FC        : plus       /opt/local/SUN/SUNWspro/bin/f77 -c -fns -fsimple=1 -xarch=v8plusa -xlibmopt -dalign -ansi -u -ansi -u -O3 \
FC        :            /te/aips/31DEC01/SUL/PREP/FILINI.f
f77: Warning: Option -fns passed to ld, if ld is invoked, ignored otherwise
f77: Warning: Option -xarch=v8plusa passed to ld, if ld is invoked, ignored otherwise
/te/aips/31DEC01/SUL/PREP/FILINI.f:
 MAIN filini:
"/te/aips/31DEC01/SUL/PREP/FILINI.f", ANSI extension: compiler flag invokes nonStandard feature
FC        : Compile of /te/aips/31DEC01/SUL/PREP/FILINI.f
FC        : ends successfully.
LINK      : Date is... Wed Apr  3 18:42:38 MST 2002
LINK      : Interpret  LINK \
LINK      :            /te/aips/31DEC01/SUL/PREP/FILINI.o
LINK      : as         PURGE=FALSE REPLACE=TRUE SAVE=TRUE STRIP=TRUE
LINK      : plus       /opt/local/SUN/SUNWspro/bin/f77 \
LINK      :            /te/aips/31DEC01/SUL/PREP/FILINI.o \
LINK      :            /te/aips/31DEC01/SUL/LIBR/AIPSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/YSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/YSS/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/GNU/libreadline.a \ 
LINK      :            -ltermcap \ 
LINK      :            -lsocket -lnsl -xarch=v8plusa -dalign -xlibmopt -s \
LINK      :            -o /te/aips/31DEC01/SUL/PREP/FILINI.EXE
f77: Warning: Option -xarch=v8plusa passed to ld, if ld is invoked, ignored otherwise
/usr/ccs/bin/ld: illegal option -- x
/usr/ccs/bin/ld: illegal option -- x
usage: ld [-abc:d:e:f:h:il:mo:p:rstu:z:B:D:F:GI:L:M:N:P:Q:R:S:VY:] file(s)
	[-a]		create an absolute file
	[-b]		do not do special PIC relocations in a.out
	[-c file]	record configuration `file'
	[-d y|n]	operate in dynamic|static mode
	[-e sym]	use `sym' as entry point address
	[-f name]	specify library for which this file is an auxiliary
			filter
	[-h name]	use `name' as internal shared object identifier
	[-i]		ignore LD_LIBRARY_PATH setting
	[-l x]		search for libx.so or libx.a
	[-m]		print memory map
	[-o outfile]	name the output file `outfile'
	[-p name]	identify audit object to accompany this object
	[-r]		create a relocatable object
	[-s]		strip any symbol and debugging information
	[-t]		do not warn of multiply defined symbols of different
			sizes
	[-u sym]	create an undefined symbol `sym'
	[-z absexec]	when building an executable absolute symbols
 			referenced in dynamic objects are promoted to
 			the executable.
	[-z now]	mark object as requiring non-lazy binding
	[-z defs|nodefs]
			disallow|allow undefined symbols
	[-z endfiltee]	marks a filtee such that it will terminate a filters
			search
	[-z direct]	specify 'direct' bindings for executable when run
	[-z groupperm|nogroupperm]
			enable|disable setting of GROUP permissions
			on dynamic dependencies
	[-z ignore|record]
			ignore|record unused dynamic dependencies
	[-z initfirst]	mark object to indicate that its .init section should
			be executed before the .init section of any other
			objects
	[-z loadfltr]	mark filter as requiring immediate loading of its
			filtees at runtime
	[-z interpose]	dynamic object is to be an `interposer' on
			direct bindings
	[-z lazyload|nolazyload]
			enable|disable delayed loading of shared objects
	[-z muldefs]	allow multiply defined symbols
	[-z nodefaultlib]
			mark object to ignore any default library search path
	[-z nodelete]	mark object as non-deletable
	[-z nodlopen]	mark object as non-dlopen()'able
	[-z nodump]	mark object as non-dldump()'able
	[-z noversion]	don't record any version sections
	[-z origin]	mark object as requiring $ORIGIN processing
	[-z redlocsym]	reduce local syms in .symtab to a minimum
	[-z text]	disallow output relocations against text
	[-z textwarn]	warn if there are relocations against text
	[-z textoff]	allow output relocations against text
	[-z weakextract]
			allow extraction of archive members to resolve weak
			references
	[-z allextract]	extract all member files from archive files
	[-z defaultextract]
			extract member files from archive files
			which resolve undefined or tentative symbols
	[-z combreloc]	combine multiple relocation sections
	[-B dynamic|static]
			search for shared libraries|archives
	[-B group]	relocate object from within group
	[-B eliminate]	eliminate unqualified global
			symbols from the symbol table
	[-B local]	reduce unqualified global symbols to local
	[-B reduce]	process symbol reductions
	[-B symbolic]	bind external references to definitions when creating
			shared objects
	[-B direct]	specify 'direct' bindings for executable when run
	[-B translator]	specify that this object is to act as a 'translator'
			for an application bound with -Bdirect
	[-D options]	print diagnostic messages
	[-F name]	specify library for which this file is a filter
	[-G]		create a shared object
	[-I interp]	use `interp' as path name of interpreter
	[-L path]	search for libraries in directory `path'
	[-M mapfile]	use processing directives contained in `mapfile'
	[-N file]	create a dynamic dependency on `file'
	[-P name]	identify audit object for processing the dependencies
			of this object
	[-Q y|n]	do|do not place version information in output file
	[-R path]	specify a library search path to be used at run time
	[-S name]	specify a link-edit support library
	[-V]		print version information
	[-Y P,dirlist]	use `dirlist' as a default path when searching for
			libraries
LINK      : Status from /opt/local/SUN/SUNWspro/bin/f77 is 1
LINK      : Link of    /te/aips/31DEC01/SUL/PREP/FILINI.o
LINK      : dies from wimpy compiler
COMLNK    : Link failed!
COMLNK    : Deleted    /te/aips/31DEC01/SUL/PREP/FILINI.o
COMLNK    : Deleted    /te/aips/31DEC01/SUL/PREP/FILINI.f
COMLNK    : Date       Wed Apr  3 18:42:39 MST 2002
PP        : Preprocess /te/aips/31DEC01/AIPS/PGM/GRIPR.FOR
PP        : into       /te/aips/31DEC01/SUL/PREP/GRIPR.f
FC        : Date       Wed Apr  3 18:42:41 MST 2002
FC        : Interpret  FC  \
FC        :            /te/aips/31DEC01/SUL/PREP/GRIPR.f
FC        : as         LIST=FALSE PURGE=FALSE
FC        : plus       /opt/local/SUN/SUNWspro/bin/f77 -c -fns -fsimple=1 -xarch=v8plusa -xlibmopt -dalign -ansi -u -ansi -u -O3 \
FC        :            /te/aips/31DEC01/SUL/PREP/GRIPR.f
f77: Warning: Option -fns passed to ld, if ld is invoked, ignored otherwise
f77: Warning: Option -xarch=v8plusa passed to ld, if ld is invoked, ignored otherwise
/te/aips/31DEC01/SUL/PREP/GRIPR.f:
 MAIN gripr:
"/te/aips/31DEC01/SUL/PREP/GRIPR.f", ANSI extension: compiler flag invokes nonStandard feature
	grigtl:
	griini:
	griint:
	gripol:
	cuc:
FC        : Compile of /te/aips/31DEC01/SUL/PREP/GRIPR.f
FC        : ends successfully.
LINK      : Date is... Wed Apr  3 18:42:46 MST 2002
LINK      : Interpret  LINK \
LINK      :            /te/aips/31DEC01/SUL/PREP/GRIPR.o
LINK      : as         PURGE=FALSE REPLACE=TRUE SAVE=TRUE STRIP=TRUE
LINK      : plus       /opt/local/SUN/SUNWspro/bin/f77 \
LINK      :            /te/aips/31DEC01/SUL/PREP/GRIPR.o \
LINK      :            /te/aips/31DEC01/SUL/LIBR/AIPSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/YSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/YSS/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/GNU/libreadline.a \ 
LINK      :            -ltermcap \ 
LINK      :            -lsocket -lnsl -xarch=v8plusa -dalign -xlibmopt -s \
LINK      :            -o /te/aips/31DEC01/SUL/PREP/GRIPR.EXE
f77: Warning: Option -xarch=v8plusa passed to ld, if ld is invoked, ignored otherwise
/usr/ccs/bin/ld: illegal option -- x
/usr/ccs/bin/ld: illegal option -- x
usage: ld [-abc:d:e:f:h:il:mo:p:rstu:z:B:D:F:GI:L:M:N:P:Q:R:S:VY:] file(s)
	[-a]		create an absolute file
	[-b]		do not do special PIC relocations in a.out
	[-c file]	record configuration `file'
	[-d y|n]	operate in dynamic|static mode
	[-e sym]	use `sym' as entry point address
	[-f name]	specify library for which this file is an auxiliary
			filter
	[-h name]	use `name' as internal shared object identifier
	[-i]		ignore LD_LIBRARY_PATH setting
	[-l x]		search for libx.so or libx.a
	[-m]		print memory map
	[-o outfile]	name the output file `outfile'
	[-p name]	identify audit object to accompany this object
	[-r]		create a relocatable object
	[-s]		strip any symbol and debugging information
	[-t]		do not warn of multiply defined symbols of different
			sizes
	[-u sym]	create an undefined symbol `sym'
	[-z absexec]	when building an executable absolute symbols
 			referenced in dynamic objects are promoted to
 			the executable.
	[-z now]	mark object as requiring non-lazy binding
	[-z defs|nodefs]
			disallow|allow undefined symbols
	[-z endfiltee]	marks a filtee such that it will terminate a filters
			search
	[-z direct]	specify 'direct' bindings for executable when run
	[-z groupperm|nogroupperm]
			enable|disable setting of GROUP permissions
			on dynamic dependencies
	[-z ignore|record]
			ignore|record unused dynamic dependencies
	[-z initfirst]	mark object to indicate that its .init section should
			be executed before the .init section of any other
			objects
	[-z loadfltr]	mark filter as requiring immediate loading of its
			filtees at runtime
	[-z interpose]	dynamic object is to be an `interposer' on
			direct bindings
	[-z lazyload|nolazyload]
			enable|disable delayed loading of shared objects
	[-z muldefs]	allow multiply defined symbols
	[-z nodefaultlib]
			mark object to ignore any default library search path
	[-z nodelete]	mark object as non-deletable
	[-z nodlopen]	mark object as non-dlopen()'able
	[-z nodump]	mark object as non-dldump()'able
	[-z noversion]	don't record any version sections
	[-z origin]	mark object as requiring $ORIGIN processing
	[-z redlocsym]	reduce local syms in .symtab to a minimum
	[-z text]	disallow output relocations against text
	[-z textwarn]	warn if there are relocations against text
	[-z textoff]	allow output relocations against text
	[-z weakextract]
			allow extraction of archive members to resolve weak
			references
	[-z allextract]	extract all member files from archive files
	[-z defaultextract]
			extract member files from archive files
			which resolve undefined or tentative symbols
	[-z combreloc]	combine multiple relocation sections
	[-B dynamic|static]
			search for shared libraries|archives
	[-B group]	relocate object from within group
	[-B eliminate]	eliminate unqualified global
			symbols from the symbol table
	[-B local]	reduce unqualified global symbols to local
	[-B reduce]	process symbol reductions
	[-B symbolic]	bind external references to definitions when creating
			shared objects
	[-B direct]	specify 'direct' bindings for executable when run
	[-B translator]	specify that this object is to act as a 'translator'
			for an application bound with -Bdirect
	[-D options]	print diagnostic messages
	[-F name]	specify library for which this file is a filter
	[-G]		create a shared object
	[-I interp]	use `interp' as path name of interpreter
	[-L path]	search for libraries in directory `path'
	[-M mapfile]	use processing directives contained in `mapfile'
	[-N file]	create a dynamic dependency on `file'
	[-P name]	identify audit object for processing the dependencies
			of this object
	[-Q y|n]	do|do not place version information in output file
	[-R path]	specify a library search path to be used at run time
	[-S name]	specify a link-edit support library
	[-V]		print version information
	[-Y P,dirlist]	use `dirlist' as a default path when searching for
			libraries
LINK      : Status from /opt/local/SUN/SUNWspro/bin/f77 is 1
LINK      : Link of    /te/aips/31DEC01/SUL/PREP/GRIPR.o
LINK      : dies from wimpy compiler
COMLNK    : Link failed!
COMLNK    : Deleted    /te/aips/31DEC01/SUL/PREP/GRIPR.o
COMLNK    : Deleted    /te/aips/31DEC01/SUL/PREP/GRIPR.f
COMLNK    : Date       Wed Apr  3 18:42:47 MST 2002
PP        : Preprocess /te/aips/31DEC01/AIPS/PGM/POPSGN.FOR
PP        : into       /te/aips/31DEC01/SUL/PREP/POPSGN.f
FC        : Date       Wed Apr  3 18:42:49 MST 2002
FC        : Interpret  FC  \
FC        :            /te/aips/31DEC01/SUL/PREP/POPSGN.f
FC        : as         LIST=FALSE PURGE=FALSE
FC        : plus       /opt/local/SUN/SUNWspro/bin/f77 -c -fns -fsimple=1 -xarch=v8plusa -xlibmopt -dalign -ansi -u -ansi -u -O3 \
FC        :            /te/aips/31DEC01/SUL/PREP/POPSGN.f
f77: Warning: Option -fns passed to ld, if ld is invoked, ignored otherwise
f77: Warning: Option -xarch=v8plusa passed to ld, if ld is invoked, ignored otherwise
/te/aips/31DEC01/SUL/PREP/POPSGN.f:
 MAIN popsgn:
"/te/aips/31DEC01/SUL/PREP/POPSGN.f", ANSI extension: compiler flag invokes nonStandard feature
	error:
	interg:
FC        : Compile of /te/aips/31DEC01/SUL/PREP/POPSGN.f
FC        : ends successfully.
LINK      : Date is... Wed Apr  3 18:42:53 MST 2002
LINK      : Interpret  LINK \
LINK      :            /te/aips/31DEC01/SUL/PREP/POPSGN.o
LINK      : as         PURGE=FALSE REPLACE=TRUE SAVE=TRUE STRIP=TRUE
LINK      : plus       /opt/local/SUN/SUNWspro/bin/f77 \
LINK      :            /te/aips/31DEC01/SUL/PREP/POPSGN.o \
LINK      :            /te/aips/31DEC01/SUL/LIBR/AIPSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/YSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/YSS/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/GNU/libreadline.a \ 
LINK      :            -ltermcap \ 
LINK      :            -lsocket -lnsl -xarch=v8plusa -dalign -xlibmopt -s \
LINK      :            -o /te/aips/31DEC01/SUL/PREP/POPSGN.EXE
f77: Warning: Option -xarch=v8plusa passed to ld, if ld is invoked, ignored otherwise
/usr/ccs/bin/ld: illegal option -- x
/usr/ccs/bin/ld: illegal option -- x
usage: ld [-abc:d:e:f:h:il:mo:p:rstu:z:B:D:F:GI:L:M:N:P:Q:R:S:VY:] file(s)
	[-a]		create an absolute file
	[-b]		do not do special PIC relocations in a.out
	[-c file]	record configuration `file'
	[-d y|n]	operate in dynamic|static mode
	[-e sym]	use `sym' as entry point address
	[-f name]	specify library for which this file is an auxiliary
			filter
	[-h name]	use `name' as internal shared object identifier
	[-i]		ignore LD_LIBRARY_PATH setting
	[-l x]		search for libx.so or libx.a
	[-m]		print memory map
	[-o outfile]	name the output file `outfile'
	[-p name]	identify audit object to accompany this object
	[-r]		create a relocatable object
	[-s]		strip any symbol and debugging information
	[-t]		do not warn of multiply defined symbols of different
			sizes
	[-u sym]	create an undefined symbol `sym'
	[-z absexec]	when building an executable absolute symbols
 			referenced in dynamic objects are promoted to
 			the executable.
	[-z now]	mark object as requiring non-lazy binding
	[-z defs|nodefs]
			disallow|allow undefined symbols
	[-z endfiltee]	marks a filtee such that it will terminate a filters
			search
	[-z direct]	specify 'direct' bindings for executable when run
	[-z groupperm|nogroupperm]
			enable|disable setting of GROUP permissions
			on dynamic dependencies
	[-z ignore|record]
			ignore|record unused dynamic dependencies
	[-z initfirst]	mark object to indicate that its .init section should
			be executed before the .init section of any other
			objects
	[-z loadfltr]	mark filter as requiring immediate loading of its
			filtees at runtime
	[-z interpose]	dynamic object is to be an `interposer' on
			direct bindings
	[-z lazyload|nolazyload]
			enable|disable delayed loading of shared objects
	[-z muldefs]	allow multiply defined symbols
	[-z nodefaultlib]
			mark object to ignore any default library search path
	[-z nodelete]	mark object as non-deletable
	[-z nodlopen]	mark object as non-dlopen()'able
	[-z nodump]	mark object as non-dldump()'able
	[-z noversion]	don't record any version sections
	[-z origin]	mark object as requiring $ORIGIN processing
	[-z redlocsym]	reduce local syms in .symtab to a minimum
	[-z text]	disallow output relocations against text
	[-z textwarn]	warn if there are relocations against text
	[-z textoff]	allow output relocations against text
	[-z weakextract]
			allow extraction of archive members to resolve weak
			references
	[-z allextract]	extract all member files from archive files
	[-z defaultextract]
			extract member files from archive files
			which resolve undefined or tentative symbols
	[-z combreloc]	combine multiple relocation sections
	[-B dynamic|static]
			search for shared libraries|archives
	[-B group]	relocate object from within group
	[-B eliminate]	eliminate unqualified global
			symbols from the symbol table
	[-B local]	reduce unqualified global symbols to local
	[-B reduce]	process symbol reductions
	[-B symbolic]	bind external references to definitions when creating
			shared objects
	[-B direct]	specify 'direct' bindings for executable when run
	[-B translator]	specify that this object is to act as a 'translator'
			for an application bound with -Bdirect
	[-D options]	print diagnostic messages
	[-F name]	specify library for which this file is a filter
	[-G]		create a shared object
	[-I interp]	use `interp' as path name of interpreter
	[-L path]	search for libraries in directory `path'
	[-M mapfile]	use processing directives contained in `mapfile'
	[-N file]	create a dynamic dependency on `file'
	[-P name]	identify audit object for processing the dependencies
			of this object
	[-Q y|n]	do|do not place version information in output file
	[-R path]	specify a library search path to be used at run time
	[-S name]	specify a link-edit support library
	[-V]		print version information
	[-Y P,dirlist]	use `dirlist' as a default path when searching for
			libraries
LINK      : Status from /opt/local/SUN/SUNWspro/bin/f77 is 1
LINK      : Link of    /te/aips/31DEC01/SUL/PREP/POPSGN.o
LINK      : dies from wimpy compiler
COMLNK    : Link failed!
COMLNK    : Deleted    /te/aips/31DEC01/SUL/PREP/POPSGN.o
COMLNK    : Deleted    /te/aips/31DEC01/SUL/PREP/POPSGN.f
COMLNK    : Date       Wed Apr  3 18:42:54 MST 2002
PP        : Preprocess /te/aips/31DEC01/AIPS/PGM/QMNGR.FOR
PP        : into       /te/aips/31DEC01/SUL/PREP/QMNGR.f
FC        : Date       Wed Apr  3 18:42:56 MST 2002
FC        : Interpret  FC  \
FC        :            /te/aips/31DEC01/SUL/PREP/QMNGR.f
FC        : as         LIST=FALSE PURGE=FALSE
FC        : plus       /opt/local/SUN/SUNWspro/bin/f77 -c -fns -fsimple=1 -xarch=v8plusa -xlibmopt -dalign -ansi -u -ansi -u -O3 \
FC        :            /te/aips/31DEC01/SUL/PREP/QMNGR.f
f77: Warning: Option -fns passed to ld, if ld is invoked, ignored otherwise
f77: Warning: Option -xarch=v8plusa passed to ld, if ld is invoked, ignored otherwise
/te/aips/31DEC01/SUL/PREP/QMNGR.f:
 MAIN qmngr:
"/te/aips/31DEC01/SUL/PREP/QMNGR.f", ANSI extension: compiler flag invokes nonStandard feature
	qmngin:
	qmngdo:
FC        : Compile of /te/aips/31DEC01/SUL/PREP/QMNGR.f
FC        : ends successfully.
LINK      : Date is... Wed Apr  3 18:42:59 MST 2002
LINK      : Interpret  LINK \
LINK      :            /te/aips/31DEC01/SUL/PREP/QMNGR.o
LINK      : as         PURGE=FALSE REPLACE=TRUE SAVE=TRUE STRIP=TRUE
LINK      : plus       /opt/local/SUN/SUNWspro/bin/f77 \
LINK      :            /te/aips/31DEC01/SUL/PREP/QMNGR.o \
LINK      :            /te/aips/31DEC01/SUL/LIBR/AIPSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/YSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/YSS/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/GNU/libreadline.a \ 
LINK      :            -ltermcap \ 
LINK      :            -lsocket -lnsl -xarch=v8plusa -dalign -xlibmopt -s \
LINK      :            -o /te/aips/31DEC01/SUL/PREP/QMNGR.EXE
f77: Warning: Option -xarch=v8plusa passed to ld, if ld is invoked, ignored otherwise
/usr/ccs/bin/ld: illegal option -- x
/usr/ccs/bin/ld: illegal option -- x
usage: ld [-abc:d:e:f:h:il:mo:p:rstu:z:B:D:F:GI:L:M:N:P:Q:R:S:VY:] file(s)
	[-a]		create an absolute file
	[-b]		do not do special PIC relocations in a.out
	[-c file]	record configuration `file'
	[-d y|n]	operate in dynamic|static mode
	[-e sym]	use `sym' as entry point address
	[-f name]	specify library for which this file is an auxiliary
			filter
	[-h name]	use `name' as internal shared object identifier
	[-i]		ignore LD_LIBRARY_PATH setting
	[-l x]		search for libx.so or libx.a
	[-m]		print memory map
	[-o outfile]	name the output file `outfile'
	[-p name]	identify audit object to accompany this object
	[-r]		create a relocatable object
	[-s]		strip any symbol and debugging information
	[-t]		do not warn of multiply defined symbols of different
			sizes
	[-u sym]	create an undefined symbol `sym'
	[-z absexec]	when building an executable absolute symbols
 			referenced in dynamic objects are promoted to
 			the executable.
	[-z now]	mark object as requiring non-lazy binding
	[-z defs|nodefs]
			disallow|allow undefined symbols
	[-z endfiltee]	marks a filtee such that it will terminate a filters
			search
	[-z direct]	specify 'direct' bindings for executable when run
	[-z groupperm|nogroupperm]
			enable|disable setting of GROUP permissions
			on dynamic dependencies
	[-z ignore|record]
			ignore|record unused dynamic dependencies
	[-z initfirst]	mark object to indicate that its .init section should
			be executed before the .init section of any other
			objects
	[-z loadfltr]	mark filter as requiring immediate loading of its
			filtees at runtime
	[-z interpose]	dynamic object is to be an `interposer' on
			direct bindings
	[-z lazyload|nolazyload]
			enable|disable delayed loading of shared objects
	[-z muldefs]	allow multiply defined symbols
	[-z nodefaultlib]
			mark object to ignore any default library search path
	[-z nodelete]	mark object as non-deletable
	[-z nodlopen]	mark object as non-dlopen()'able
	[-z nodump]	mark object as non-dldump()'able
	[-z noversion]	don't record any version sections
	[-z origin]	mark object as requiring $ORIGIN processing
	[-z redlocsym]	reduce local syms in .symtab to a minimum
	[-z text]	disallow output relocations against text
	[-z textwarn]	warn if there are relocations against text
	[-z textoff]	allow output relocations against text
	[-z weakextract]
			allow extraction of archive members to resolve weak
			references
	[-z allextract]	extract all member files from archive files
	[-z defaultextract]
			extract member files from archive files
			which resolve undefined or tentative symbols
	[-z combreloc]	combine multiple relocation sections
	[-B dynamic|static]
			search for shared libraries|archives
	[-B group]	relocate object from within group
	[-B eliminate]	eliminate unqualified global
			symbols from the symbol table
	[-B local]	reduce unqualified global symbols to local
	[-B reduce]	process symbol reductions
	[-B symbolic]	bind external references to definitions when creating
			shared objects
	[-B direct]	specify 'direct' bindings for executable when run
	[-B translator]	specify that this object is to act as a 'translator'
			for an application bound with -Bdirect
	[-D options]	print diagnostic messages
	[-F name]	specify library for which this file is a filter
	[-G]		create a shared object
	[-I interp]	use `interp' as path name of interpreter
	[-L path]	search for libraries in directory `path'
	[-M mapfile]	use processing directives contained in `mapfile'
	[-N file]	create a dynamic dependency on `file'
	[-P name]	identify audit object for processing the dependencies
			of this object
	[-Q y|n]	do|do not place version information in output file
	[-R path]	specify a library search path to be used at run time
	[-S name]	specify a link-edit support library
	[-V]		print version information
	[-Y P,dirlist]	use `dirlist' as a default path when searching for
			libraries
LINK      : Status from /opt/local/SUN/SUNWspro/bin/f77 is 1
LINK      : Link of    /te/aips/31DEC01/SUL/PREP/QMNGR.o
LINK      : dies from wimpy compiler
COMLNK    : Link failed!
COMLNK    : Deleted    /te/aips/31DEC01/SUL/PREP/QMNGR.o
COMLNK    : Deleted    /te/aips/31DEC01/SUL/PREP/QMNGR.f
COMLNK    : Date       Wed Apr  3 18:43:01 MST 2002
PP        : Preprocess /te/aips/31DEC01/AIPS/PGM/RECAT.FOR
PP        : into       /te/aips/31DEC01/SUL/PREP/RECAT.f
FC        : Date       Wed Apr  3 18:43:02 MST 2002
FC        : Interpret  FC  \
FC        :            /te/aips/31DEC01/SUL/PREP/RECAT.f
FC        : as         LIST=FALSE PURGE=FALSE
FC        : plus       /opt/local/SUN/SUNWspro/bin/f77 -c -fns -fsimple=1 -xarch=v8plusa -xlibmopt -dalign -ansi -u -ansi -u -O3 \
FC        :            /te/aips/31DEC01/SUL/PREP/RECAT.f
f77: Warning: Option -fns passed to ld, if ld is invoked, ignored otherwise
f77: Warning: Option -xarch=v8plusa passed to ld, if ld is invoked, ignored otherwise
/te/aips/31DEC01/SUL/PREP/RECAT.f:
 MAIN recat:
"/te/aips/31DEC01/SUL/PREP/RECAT.f", ANSI extension: compiler flag invokes nonStandard feature
	getusr:
	rebild:
	makcat:
	catins:
FC        : Compile of /te/aips/31DEC01/SUL/PREP/RECAT.f
FC        : ends successfully.
LINK      : Date is... Wed Apr  3 18:43:05 MST 2002
LINK      : Interpret  LINK \
LINK      :            /te/aips/31DEC01/SUL/PREP/RECAT.o
LINK      : as         PURGE=FALSE REPLACE=TRUE SAVE=TRUE STRIP=TRUE
LINK      : plus       /opt/local/SUN/SUNWspro/bin/f77 \
LINK      :            /te/aips/31DEC01/SUL/PREP/RECAT.o \
LINK      :            /te/aips/31DEC01/SUL/LIBR/AIPSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/YSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/YSS/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/GNU/libreadline.a \ 
LINK      :            -ltermcap \ 
LINK      :            -lsocket -lnsl -xarch=v8plusa -dalign -xlibmopt -s \
LINK      :            -o /te/aips/31DEC01/SUL/PREP/RECAT.EXE
f77: Warning: Option -xarch=v8plusa passed to ld, if ld is invoked, ignored otherwise
/usr/ccs/bin/ld: illegal option -- x
/usr/ccs/bin/ld: illegal option -- x
usage: ld [-abc:d:e:f:h:il:mo:p:rstu:z:B:D:F:GI:L:M:N:P:Q:R:S:VY:] file(s)
	[-a]		create an absolute file
	[-b]		do not do special PIC relocations in a.out
	[-c file]	record configuration `file'
	[-d y|n]	operate in dynamic|static mode
	[-e sym]	use `sym' as entry point address
	[-f name]	specify library for which this file is an auxiliary
			filter
	[-h name]	use `name' as internal shared object identifier
	[-i]		ignore LD_LIBRARY_PATH setting
	[-l x]		search for libx.so or libx.a
	[-m]		print memory map
	[-o outfile]	name the output file `outfile'
	[-p name]	identify audit object to accompany this object
	[-r]		create a relocatable object
	[-s]		strip any symbol and debugging information
	[-t]		do not warn of multiply defined symbols of different
			sizes
	[-u sym]	create an undefined symbol `sym'
	[-z absexec]	when building an executable absolute symbols
 			referenced in dynamic objects are promoted to
 			the executable.
	[-z now]	mark object as requiring non-lazy binding
	[-z defs|nodefs]
			disallow|allow undefined symbols
	[-z endfiltee]	marks a filtee such that it will terminate a filters
			search
	[-z direct]	specify 'direct' bindings for executable when run
	[-z groupperm|nogroupperm]
			enable|disable setting of GROUP permissions
			on dynamic dependencies
	[-z ignore|record]
			ignore|record unused dynamic dependencies
	[-z initfirst]	mark object to indicate that its .init section should
			be executed before the .init section of any other
			objects
	[-z loadfltr]	mark filter as requiring immediate loading of its
			filtees at runtime
	[-z interpose]	dynamic object is to be an `interposer' on
			direct bindings
	[-z lazyload|nolazyload]
			enable|disable delayed loading of shared objects
	[-z muldefs]	allow multiply defined symbols
	[-z nodefaultlib]
			mark object to ignore any default library search path
	[-z nodelete]	mark object as non-deletable
	[-z nodlopen]	mark object as non-dlopen()'able
	[-z nodump]	mark object as non-dldump()'able
	[-z noversion]	don't record any version sections
	[-z origin]	mark object as requiring $ORIGIN processing
	[-z redlocsym]	reduce local syms in .symtab to a minimum
	[-z text]	disallow output relocations against text
	[-z textwarn]	warn if there are relocations against text
	[-z textoff]	allow output relocations against text
	[-z weakextract]
			allow extraction of archive members to resolve weak
			references
	[-z allextract]	extract all member files from archive files
	[-z defaultextract]
			extract member files from archive files
			which resolve undefined or tentative symbols
	[-z combreloc]	combine multiple relocation sections
	[-B dynamic|static]
			search for shared libraries|archives
	[-B group]	relocate object from within group
	[-B eliminate]	eliminate unqualified global
			symbols from the symbol table
	[-B local]	reduce unqualified global symbols to local
	[-B reduce]	process symbol reductions
	[-B symbolic]	bind external references to definitions when creating
			shared objects
	[-B direct]	specify 'direct' bindings for executable when run
	[-B translator]	specify that this object is to act as a 'translator'
			for an application bound with -Bdirect
	[-D options]	print diagnostic messages
	[-F name]	specify library for which this file is a filter
	[-G]		create a shared object
	[-I interp]	use `interp' as path name of interpreter
	[-L path]	search for libraries in directory `path'
	[-M mapfile]	use processing directives contained in `mapfile'
	[-N file]	create a dynamic dependency on `file'
	[-P name]	identify audit object for processing the dependencies
			of this object
	[-Q y|n]	do|do not place version information in output file
	[-R path]	specify a library search path to be used at run time
	[-S name]	specify a link-edit support library
	[-V]		print version information
	[-Y P,dirlist]	use `dirlist' as a default path when searching for
			libraries
LINK      : Status from /opt/local/SUN/SUNWspro/bin/f77 is 1
LINK      : Link of    /te/aips/31DEC01/SUL/PREP/RECAT.o
LINK      : dies from wimpy compiler
COMLNK    : Link failed!
COMLNK    : Deleted    /te/aips/31DEC01/SUL/PREP/RECAT.o
COMLNK    : Deleted    /te/aips/31DEC01/SUL/PREP/RECAT.f
COMLNK    : Date       Wed Apr  3 18:43:07 MST 2002
PP        : Preprocess /te/aips/31DEC01/AIPS/PGM/SETSP.FOR
PP        : into       /te/aips/31DEC01/SUL/PREP/SETSP.f
FC        : Date       Wed Apr  3 18:43:08 MST 2002
FC        : Interpret  FC  \
FC        :            /te/aips/31DEC01/SUL/PREP/SETSP.f
FC        : as         LIST=FALSE PURGE=FALSE
FC        : plus       /opt/local/SUN/SUNWspro/bin/f77 -c -fns -fsimple=1 -xarch=v8plusa -xlibmopt -dalign -ansi -u -ansi -u -O3 \
FC        :            /te/aips/31DEC01/SUL/PREP/SETSP.f
f77: Warning: Option -fns passed to ld, if ld is invoked, ignored otherwise
f77: Warning: Option -xarch=v8plusa passed to ld, if ld is invoked, ignored otherwise
/te/aips/31DEC01/SUL/PREP/SETSP.f:
 MAIN setsp:
"/te/aips/31DEC01/SUL/PREP/SETSP.f", ANSI extension: compiler flag invokes nonStandard feature
	spshow:
	spset:
FC        : Compile of /te/aips/31DEC01/SUL/PREP/SETSP.f
FC        : ends successfully.
LINK      : Date is... Wed Apr  3 18:43:18 MST 2002
LINK      : Interpret  LINK \
LINK      :            /te/aips/31DEC01/SUL/PREP/SETSP.o
LINK      : as         PURGE=FALSE REPLACE=TRUE SAVE=TRUE STRIP=TRUE
LINK      : plus       /opt/local/SUN/SUNWspro/bin/f77 \
LINK      :            /te/aips/31DEC01/SUL/PREP/SETSP.o \
LINK      :            /te/aips/31DEC01/SUL/LIBR/AIPSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/YSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/YSS/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/GNU/libreadline.a \ 
LINK      :            -ltermcap \ 
LINK      :            -lsocket -lnsl -xarch=v8plusa -dalign -xlibmopt -s \
LINK      :            -o /te/aips/31DEC01/SUL/PREP/SETSP.EXE
f77: Warning: Option -xarch=v8plusa passed to ld, if ld is invoked, ignored otherwise
/usr/ccs/bin/ld: illegal option -- x
/usr/ccs/bin/ld: illegal option -- x
usage: ld [-abc:d:e:f:h:il:mo:p:rstu:z:B:D:F:GI:L:M:N:P:Q:R:S:VY:] file(s)
	[-a]		create an absolute file
	[-b]		do not do special PIC relocations in a.out
	[-c file]	record configuration `file'
	[-d y|n]	operate in dynamic|static mode
	[-e sym]	use `sym' as entry point address
	[-f name]	specify library for which this file is an auxiliary
			filter
	[-h name]	use `name' as internal shared object identifier
	[-i]		ignore LD_LIBRARY_PATH setting
	[-l x]		search for libx.so or libx.a
	[-m]		print memory map
	[-o outfile]	name the output file `outfile'
	[-p name]	identify audit object to accompany this object
	[-r]		create a relocatable object
	[-s]		strip any symbol and debugging information
	[-t]		do not warn of multiply defined symbols of different
			sizes
	[-u sym]	create an undefined symbol `sym'
	[-z absexec]	when building an executable absolute symbols
 			referenced in dynamic objects are promoted to
 			the executable.
	[-z now]	mark object as requiring non-lazy binding
	[-z defs|nodefs]
			disallow|allow undefined symbols
	[-z endfiltee]	marks a filtee such that it will terminate a filters
			search
	[-z direct]	specify 'direct' bindings for executable when run
	[-z groupperm|nogroupperm]
			enable|disable setting of GROUP permissions
			on dynamic dependencies
	[-z ignore|record]
			ignore|record unused dynamic dependencies
	[-z initfirst]	mark object to indicate that its .init section should
			be executed before the .init section of any other
			objects
	[-z loadfltr]	mark filter as requiring immediate loading of its
			filtees at runtime
	[-z interpose]	dynamic object is to be an `interposer' on
			direct bindings
	[-z lazyload|nolazyload]
			enable|disable delayed loading of shared objects
	[-z muldefs]	allow multiply defined symbols
	[-z nodefaultlib]
			mark object to ignore any default library search path
	[-z nodelete]	mark object as non-deletable
	[-z nodlopen]	mark object as non-dlopen()'able
	[-z nodump]	mark object as non-dldump()'able
	[-z noversion]	don't record any version sections
	[-z origin]	mark object as requiring $ORIGIN processing
	[-z redlocsym]	reduce local syms in .symtab to a minimum
	[-z text]	disallow output relocations against text
	[-z textwarn]	warn if there are relocations against text
	[-z textoff]	allow output relocations against text
	[-z weakextract]
			allow extraction of archive members to resolve weak
			references
	[-z allextract]	extract all member files from archive files
	[-z defaultextract]
			extract member files from archive files
			which resolve undefined or tentative symbols
	[-z combreloc]	combine multiple relocation sections
	[-B dynamic|static]
			search for shared libraries|archives
	[-B group]	relocate object from within group
	[-B eliminate]	eliminate unqualified global
			symbols from the symbol table
	[-B local]	reduce unqualified global symbols to local
	[-B reduce]	process symbol reductions
	[-B symbolic]	bind external references to definitions when creating
			shared objects
	[-B direct]	specify 'direct' bindings for executable when run
	[-B translator]	specify that this object is to act as a 'translator'
			for an application bound with -Bdirect
	[-D options]	print diagnostic messages
	[-F name]	specify library for which this file is a filter
	[-G]		create a shared object
	[-I interp]	use `interp' as path name of interpreter
	[-L path]	search for libraries in directory `path'
	[-M mapfile]	use processing directives contained in `mapfile'
	[-N file]	create a dynamic dependency on `file'
	[-P name]	identify audit object for processing the dependencies
			of this object
	[-Q y|n]	do|do not place version information in output file
	[-R path]	specify a library search path to be used at run time
	[-S name]	specify a link-edit support library
	[-V]		print version information
	[-Y P,dirlist]	use `dirlist' as a default path when searching for
			libraries
LINK      : Status from /opt/local/SUN/SUNWspro/bin/f77 is 1
LINK      : Link of    /te/aips/31DEC01/SUL/PREP/SETSP.o
LINK      : dies from wimpy compiler
COMLNK    : Link failed!
COMLNK    : Deleted    /te/aips/31DEC01/SUL/PREP/SETSP.o
COMLNK    : Deleted    /te/aips/31DEC01/SUL/PREP/SETSP.f
COMLNK    : Date       Wed Apr  3 18:43:19 MST 2002
PP        : Preprocess /te/aips/31DEC01/AIPS/PGM/SETTVP.FOR
PP        : into       /te/aips/31DEC01/SUL/PREP/SETTVP.f
FC        : Date       Wed Apr  3 18:43:21 MST 2002
FC        : Interpret  FC  \
FC        :            /te/aips/31DEC01/SUL/PREP/SETTVP.f
FC        : as         LIST=FALSE PURGE=FALSE
FC        : plus       /opt/local/SUN/SUNWspro/bin/f77 -c -fns -fsimple=1 -xarch=v8plusa -xlibmopt -dalign -ansi -u -ansi -u -O3 \
FC        :            /te/aips/31DEC01/SUL/PREP/SETTVP.f
f77: Warning: Option -fns passed to ld, if ld is invoked, ignored otherwise
f77: Warning: Option -xarch=v8plusa passed to ld, if ld is invoked, ignored otherwise
/te/aips/31DEC01/SUL/PREP/SETTVP.f:
 MAIN settvp:
"/te/aips/31DEC01/SUL/PREP/SETTVP.f", ANSI extension: compiler flag invokes nonStandard feature
	kuestv:
FC        : Compile of /te/aips/31DEC01/SUL/PREP/SETTVP.f
FC        : ends successfully.
LINK      : Date is... Wed Apr  3 18:43:25 MST 2002
LINK      : Interpret  LINK \
LINK      :            /te/aips/31DEC01/SUL/PREP/SETTVP.o
LINK      : as         PURGE=FALSE REPLACE=TRUE SAVE=TRUE STRIP=TRUE
LINK      : plus       /opt/local/SUN/SUNWspro/bin/f77 \
LINK      :            /te/aips/31DEC01/SUL/PREP/SETTVP.o \
LINK      :            /te/aips/31DEC01/SUL/LIBR/AIPSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/YSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/YSS/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/GNU/libreadline.a \ 
LINK      :            -ltermcap \ 
LINK      :            -lsocket -lnsl -xarch=v8plusa -dalign -xlibmopt -s \
LINK      :            -o /te/aips/31DEC01/SUL/PREP/SETTVP.EXE
f77: Warning: Option -xarch=v8plusa passed to ld, if ld is invoked, ignored otherwise
/usr/ccs/bin/ld: illegal option -- x
/usr/ccs/bin/ld: illegal option -- x
usage: ld [-abc:d:e:f:h:il:mo:p:rstu:z:B:D:F:GI:L:M:N:P:Q:R:S:VY:] file(s)
	[-a]		create an absolute file
	[-b]		do not do special PIC relocations in a.out
	[-c file]	record configuration `file'
	[-d y|n]	operate in dynamic|static mode
	[-e sym]	use `sym' as entry point address
	[-f name]	specify library for which this file is an auxiliary
			filter
	[-h name]	use `name' as internal shared object identifier
	[-i]		ignore LD_LIBRARY_PATH setting
	[-l x]		search for libx.so or libx.a
	[-m]		print memory map
	[-o outfile]	name the output file `outfile'
	[-p name]	identify audit object to accompany this object
	[-r]		create a relocatable object
	[-s]		strip any symbol and debugging information
	[-t]		do not warn of multiply defined symbols of different
			sizes
	[-u sym]	create an undefined symbol `sym'
	[-z absexec]	when building an executable absolute symbols
 			referenced in dynamic objects are promoted to
 			the executable.
	[-z now]	mark object as requiring non-lazy binding
	[-z defs|nodefs]
			disallow|allow undefined symbols
	[-z endfiltee]	marks a filtee such that it will terminate a filters
			search
	[-z direct]	specify 'direct' bindings for executable when run
	[-z groupperm|nogroupperm]
			enable|disable setting of GROUP permissions
			on dynamic dependencies
	[-z ignore|record]
			ignore|record unused dynamic dependencies
	[-z initfirst]	mark object to indicate that its .init section should
			be executed before the .init section of any other
			objects
	[-z loadfltr]	mark filter as requiring immediate loading of its
			filtees at runtime
	[-z interpose]	dynamic object is to be an `interposer' on
			direct bindings
	[-z lazyload|nolazyload]
			enable|disable delayed loading of shared objects
	[-z muldefs]	allow multiply defined symbols
	[-z nodefaultlib]
			mark object to ignore any default library search path
	[-z nodelete]	mark object as non-deletable
	[-z nodlopen]	mark object as non-dlopen()'able
	[-z nodump]	mark object as non-dldump()'able
	[-z noversion]	don't record any version sections
	[-z origin]	mark object as requiring $ORIGIN processing
	[-z redlocsym]	reduce local syms in .symtab to a minimum
	[-z text]	disallow output relocations against text
	[-z textwarn]	warn if there are relocations against text
	[-z textoff]	allow output relocations against text
	[-z weakextract]
			allow extraction of archive members to resolve weak
			references
	[-z allextract]	extract all member files from archive files
	[-z defaultextract]
			extract member files from archive files
			which resolve undefined or tentative symbols
	[-z combreloc]	combine multiple relocation sections
	[-B dynamic|static]
			search for shared libraries|archives
	[-B group]	relocate object from within group
	[-B eliminate]	eliminate unqualified global
			symbols from the symbol table
	[-B local]	reduce unqualified global symbols to local
	[-B reduce]	process symbol reductions
	[-B symbolic]	bind external references to definitions when creating
			shared objects
	[-B direct]	specify 'direct' bindings for executable when run
	[-B translator]	specify that this object is to act as a 'translator'
			for an application bound with -Bdirect
	[-D options]	print diagnostic messages
	[-F name]	specify library for which this file is a filter
	[-G]		create a shared object
	[-I interp]	use `interp' as path name of interpreter
	[-L path]	search for libraries in directory `path'
	[-M mapfile]	use processing directives contained in `mapfile'
	[-N file]	create a dynamic dependency on `file'
	[-P name]	identify audit object for processing the dependencies
			of this object
	[-Q y|n]	do|do not place version information in output file
	[-R path]	specify a library search path to be used at run time
	[-S name]	specify a link-edit support library
	[-V]		print version information
	[-Y P,dirlist]	use `dirlist' as a default path when searching for
			libraries
LINK      : Status from /opt/local/SUN/SUNWspro/bin/f77 is 1
LINK      : Link of    /te/aips/31DEC01/SUL/PREP/SETTVP.o
LINK      : dies from wimpy compiler
COMLNK    : Link failed!
COMLNK    : Deleted    /te/aips/31DEC01/SUL/PREP/SETTVP.o
COMLNK    : Deleted    /te/aips/31DEC01/SUL/PREP/SETTVP.f
INSTEP4    : Failure in $AIPPGM/...
INSTEP4    : compiling/linking.
INSTEP4    : Dies of unnatural causes at Wed Apr  3 18:43:26 MST 2002
INSTEP4    : Begins at Thu Apr  4 07:52:26 MST 2002
INSTEP4    : 
INSTEP4    : Compile and Link all programs (may take a while)
INSTEP4    : 
INSTEP4    : Processing $AIPPGM/...
INSTEP4    : programs.
INSTEP4    : File       /turtle/te/aips/31DEC01/SUL/INSTALL/AIPPGM.LIS
INSTEP4    : already exists (no need to create).
INSTEP4    : Resume     $AIPPGM/...
INSTEP4    : compiling/linking at
INSTEP4   : /te/aips/31DEC01/AIPS/PGM/AIPS.FOR
INSTEP4   : /te/aips/31DEC01/AIPS/PGM/AIPSB.FOR
INSTEP4   : /te/aips/31DEC01/AIPS/PGM/AIPSC.FOR
INSTEP4   : /te/aips/31DEC01/AIPS/PGM/AJAX.FOR
INSTEP4   : /te/aips/31DEC01/AIPS/PGM/BATER.FOR
INSTEP4   : /te/aips/31DEC01/AIPS/PGM/BSTRT1.FOR
INSTEP4   : /te/aips/31DEC01/AIPS/PGM/DAIP.FOR
INSTEP4   : /te/aips/31DEC01/AIPS/PGM/FILAI2.FOR
INSTEP4   : /te/aips/31DEC01/AIPS/PGM/FILAIP.FOR
INSTEP4   : /te/aips/31DEC01/AIPS/PGM/FILINI.FOR
INSTEP4   : /te/aips/31DEC01/AIPS/PGM/GRIPR.FOR
INSTEP4   : /te/aips/31DEC01/AIPS/PGM/POPSGN.FOR
INSTEP4   : /te/aips/31DEC01/AIPS/PGM/QMNGR.FOR
INSTEP4   : /te/aips/31DEC01/AIPS/PGM/RECAT.FOR
INSTEP4   : /te/aips/31DEC01/AIPS/PGM/SETSP.FOR
INSTEP4   : /te/aips/31DEC01/AIPS/PGM/SETTVP.FOR
COMLNK    : Date       Thu Apr  4 07:52:27 MST 2002
PP        : Preprocess /te/aips/31DEC01/AIPS/PGM/AIPS.FOR
PP        : into       /te/aips/31DEC01/SUL/PREP/AIPS.f
FC        : Date       Thu Apr  4 07:52:29 MST 2002
FC        : Interpret  FC  \
FC        :            /te/aips/31DEC01/SUL/PREP/AIPS.f
FC        : as         LIST=FALSE PURGE=FALSE
FC        : plus       /opt/local/SUN2/SUNWspro/bin/f77 -c -fns -fsimple=1 -xarch=v8plusa -xlibmopt -dalign -ansi -u -ansi -u -O3 \
FC        :            /te/aips/31DEC01/SUL/PREP/AIPS.f
ANSI extension: compiler flag invokes nonStandard feature
/te/aips/31DEC01/SUL/PREP/AIPS.f:
 MAIN aips:
	aipbeg:
	aiperr:
	gtline:
	interp:
	verbs:
FC        : Compile of /te/aips/31DEC01/SUL/PREP/AIPS.f
FC        : ends successfully.
LINK      : Date is... Thu Apr  4 07:52:39 MST 2002
LINK      : Interpret  LINK \
LINK      :            /te/aips/31DEC01/SUL/PREP/AIPS.o
LINK      : as         PURGE=FALSE REPLACE=TRUE SAVE=TRUE STRIP=TRUE
LINK      : plus       /opt/local/SUN2/SUNWspro/bin/f77 \
LINK      :            /te/aips/31DEC01/SUL/PREP/AIPS.o \
LINK      :            /te/aips/31DEC01/SUL/LIBR/AIPSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/YSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/YSS/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/GNU/libreadline.a \ 
LINK      :            -ltermcap \ 
LINK      :            -lsocket -lnsl -xarch=v8plusa -dalign -xlibmopt -s \
LINK      :            -o /te/aips/31DEC01/SUL/PREP/AIPS.EXE
Undefined			first referenced
 symbol  			    in file
__bb_init_func                      /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB(ZACTV9.o)
ld: fatal: Symbol referencing errors. No output written to /te/aips/31DEC01/SUL/PREP/AIPS.EXE
LINK      : Status from /opt/local/SUN2/SUNWspro/bin/f77 is 1
LINK      : Link of    /te/aips/31DEC01/SUL/PREP/AIPS.o
LINK      : dies from wimpy compiler
COMLNK    : Link failed!
COMLNK    : Deleted    /te/aips/31DEC01/SUL/PREP/AIPS.o
COMLNK    : Deleted    /te/aips/31DEC01/SUL/PREP/AIPS.f
COMLNK    : Date       Thu Apr  4 07:52:42 MST 2002
PP        : Preprocess /te/aips/31DEC01/AIPS/PGM/AIPSB.FOR
PP        : into       /te/aips/31DEC01/SUL/PREP/AIPSB.f
FC        : Date       Thu Apr  4 07:52:44 MST 2002
FC        : Interpret  FC  \
FC        :            /te/aips/31DEC01/SUL/PREP/AIPSB.f
FC        : as         LIST=FALSE PURGE=FALSE
FC        : plus       /opt/local/SUN2/SUNWspro/bin/f77 -c -fns -fsimple=1 -xarch=v8plusa -xlibmopt -dalign -ansi -u -ansi -u -O3 \
FC        :            /te/aips/31DEC01/SUL/PREP/AIPSB.f
ANSI extension: compiler flag invokes nonStandard feature
/te/aips/31DEC01/SUL/PREP/AIPSB.f:
 MAIN aipsb:
	batset:
	gtlinb:
	interb:
	verbsb:
FC        : Compile of /te/aips/31DEC01/SUL/PREP/AIPSB.f
FC        : ends successfully.
LINK      : Date is... Thu Apr  4 07:52:50 MST 2002
LINK      : Interpret  LINK \
LINK      :            /te/aips/31DEC01/SUL/PREP/AIPSB.o
LINK      : as         PURGE=FALSE REPLACE=TRUE SAVE=TRUE STRIP=TRUE
LINK      : plus       /opt/local/SUN2/SUNWspro/bin/f77 \
LINK      :            /te/aips/31DEC01/SUL/PREP/AIPSB.o \
LINK      :            /te/aips/31DEC01/SUL/LIBR/AIPSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/YSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/YSS/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/GNU/libreadline.a \ 
LINK      :            -ltermcap \ 
LINK      :            -lsocket -lnsl -xarch=v8plusa -dalign -xlibmopt -s \
LINK      :            -o /te/aips/31DEC01/SUL/PREP/AIPSB.EXE
Undefined			first referenced
 symbol  			    in file
__bb_init_func                      /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB(ZACTV9.o)
ld: fatal: Symbol referencing errors. No output written to /te/aips/31DEC01/SUL/PREP/AIPSB.EXE
LINK      : Status from /opt/local/SUN2/SUNWspro/bin/f77 is 1
LINK      : Link of    /te/aips/31DEC01/SUL/PREP/AIPSB.o
LINK      : dies from wimpy compiler
COMLNK    : Link failed!
COMLNK    : Deleted    /te/aips/31DEC01/SUL/PREP/AIPSB.o
COMLNK    : Deleted    /te/aips/31DEC01/SUL/PREP/AIPSB.f
COMLNK    : Date       Thu Apr  4 07:52:52 MST 2002
PP        : Preprocess /te/aips/31DEC01/AIPS/PGM/AIPSC.FOR
PP        : into       /te/aips/31DEC01/SUL/PREP/AIPSC.f
FC        : Date       Thu Apr  4 07:52:54 MST 2002
FC        : Interpret  FC  \
FC        :            /te/aips/31DEC01/SUL/PREP/AIPSC.f
FC        : as         LIST=FALSE PURGE=FALSE
FC        : plus       /opt/local/SUN2/SUNWspro/bin/f77 -c -fns -fsimple=1 -xarch=v8plusa -xlibmopt -dalign -ansi -u -ansi -u -O3 \
FC        :            /te/aips/31DEC01/SUL/PREP/AIPSC.f
ANSI extension: compiler flag invokes nonStandard feature
/te/aips/31DEC01/SUL/PREP/AIPSC.f:
 MAIN aipsc:
	chstrt:
	chstop:
	cu2:
	cu3a:
	cu8:
	gtlinc:
	interc:
	verbsc:
FC        : Compile of /te/aips/31DEC01/SUL/PREP/AIPSC.f
FC        : ends successfully.
LINK      : Date is... Thu Apr  4 07:53:11 MST 2002
LINK      : Interpret  LINK \
LINK      :            /te/aips/31DEC01/SUL/PREP/AIPSC.o
LINK      : as         PURGE=FALSE REPLACE=TRUE SAVE=TRUE STRIP=TRUE
LINK      : plus       /opt/local/SUN2/SUNWspro/bin/f77 \
LINK      :            /te/aips/31DEC01/SUL/PREP/AIPSC.o \
LINK      :            /te/aips/31DEC01/SUL/LIBR/AIPSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/YSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/YSS/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/GNU/libreadline.a \ 
LINK      :            -ltermcap \ 
LINK      :            -lsocket -lnsl -xarch=v8plusa -dalign -xlibmopt -s \
LINK      :            -o /te/aips/31DEC01/SUL/PREP/AIPSC.EXE
Undefined			first referenced
 symbol  			    in file
__bb_init_func                      /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB(ZACTV9.o)
ld: fatal: Symbol referencing errors. No output written to /te/aips/31DEC01/SUL/PREP/AIPSC.EXE
LINK      : Status from /opt/local/SUN2/SUNWspro/bin/f77 is 1
LINK      : Link of    /te/aips/31DEC01/SUL/PREP/AIPSC.o
LINK      : dies from wimpy compiler
COMLNK    : Link failed!
COMLNK    : Deleted    /te/aips/31DEC01/SUL/PREP/AIPSC.o
COMLNK    : Deleted    /te/aips/31DEC01/SUL/PREP/AIPSC.f
COMLNK    : Date       Thu Apr  4 07:53:13 MST 2002
PP        : Preprocess /te/aips/31DEC01/AIPS/PGM/AJAX.FOR
PP        : into       /te/aips/31DEC01/SUL/PREP/AJAX.f
FC        : Date       Thu Apr  4 07:53:14 MST 2002
FC        : Interpret  FC  \
FC        :            /te/aips/31DEC01/SUL/PREP/AJAX.f
FC        : as         LIST=FALSE PURGE=FALSE
FC        : plus       /opt/local/SUN2/SUNWspro/bin/f77 -c -fns -fsimple=1 -xarch=v8plusa -xlibmopt -dalign -ansi -u -ansi -u -O3 \
FC        :            /te/aips/31DEC01/SUL/PREP/AJAX.f
ANSI extension: compiler flag invokes nonStandard feature
/te/aips/31DEC01/SUL/PREP/AJAX.f:
 MAIN ajax:
FC        : Compile of /te/aips/31DEC01/SUL/PREP/AJAX.f
FC        : ends successfully.
LINK      : Date is... Thu Apr  4 07:53:17 MST 2002
LINK      : Interpret  LINK \
LINK      :            /te/aips/31DEC01/SUL/PREP/AJAX.o
LINK      : as         PURGE=FALSE REPLACE=TRUE SAVE=TRUE STRIP=TRUE
LINK      : plus       /opt/local/SUN2/SUNWspro/bin/f77 \
LINK      :            /te/aips/31DEC01/SUL/PREP/AJAX.o \
LINK      :            /te/aips/31DEC01/SUL/LIBR/AIPSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/YSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/YSS/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/GNU/libreadline.a \ 
LINK      :            -ltermcap \ 
LINK      :            -lsocket -lnsl -xarch=v8plusa -dalign -xlibmopt -s \
LINK      :            -o /te/aips/31DEC01/SUL/PREP/AJAX.EXE
Undefined			first referenced
 symbol  			    in file
__bb_init_func                      /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB(ZCPU.o)
ld: fatal: Symbol referencing errors. No output written to /te/aips/31DEC01/SUL/PREP/AJAX.EXE
LINK      : Status from /opt/local/SUN2/SUNWspro/bin/f77 is 1
LINK      : Link of    /te/aips/31DEC01/SUL/PREP/AJAX.o
LINK      : dies from wimpy compiler
COMLNK    : Link failed!
COMLNK    : Deleted    /te/aips/31DEC01/SUL/PREP/AJAX.o
COMLNK    : Deleted    /te/aips/31DEC01/SUL/PREP/AJAX.f
COMLNK    : Date       Thu Apr  4 07:53:18 MST 2002
PP        : Preprocess /te/aips/31DEC01/AIPS/PGM/BATER.FOR
PP        : into       /te/aips/31DEC01/SUL/PREP/BATER.f
FC        : Date       Thu Apr  4 07:53:20 MST 2002
FC        : Interpret  FC  \
FC        :            /te/aips/31DEC01/SUL/PREP/BATER.f
FC        : as         LIST=FALSE PURGE=FALSE
FC        : plus       /opt/local/SUN2/SUNWspro/bin/f77 -c -fns -fsimple=1 -xarch=v8plusa -xlibmopt -dalign -ansi -u -ansi -u -O3 \
FC        :            /te/aips/31DEC01/SUL/PREP/BATER.f
ANSI extension: compiler flag invokes nonStandard feature
/te/aips/31DEC01/SUL/PREP/BATER.f:
 MAIN bater:
	batgtl:
	batini:
	batint:
	batpol:
	cua:
	cub:
FC        : Compile of /te/aips/31DEC01/SUL/PREP/BATER.f
FC        : ends successfully.
LINK      : Date is... Thu Apr  4 07:53:48 MST 2002
LINK      : Interpret  LINK \
LINK      :            /te/aips/31DEC01/SUL/PREP/BATER.o
LINK      : as         PURGE=FALSE REPLACE=TRUE SAVE=TRUE STRIP=TRUE
LINK      : plus       /opt/local/SUN2/SUNWspro/bin/f77 \
LINK      :            /te/aips/31DEC01/SUL/PREP/BATER.o \
LINK      :            /te/aips/31DEC01/SUL/LIBR/AIPSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/YSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/YSS/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/GNU/libreadline.a \ 
LINK      :            -ltermcap \ 
LINK      :            -lsocket -lnsl -xarch=v8plusa -dalign -xlibmopt -s \
LINK      :            -o /te/aips/31DEC01/SUL/PREP/BATER.EXE
Undefined			first referenced
 symbol  			    in file
__bb_init_func                      /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB(ZACTV9.o)
ld: fatal: Symbol referencing errors. No output written to /te/aips/31DEC01/SUL/PREP/BATER.EXE
LINK      : Status from /opt/local/SUN2/SUNWspro/bin/f77 is 1
LINK      : Link of    /te/aips/31DEC01/SUL/PREP/BATER.o
LINK      : dies from wimpy compiler
COMLNK    : Link failed!
COMLNK    : Deleted    /te/aips/31DEC01/SUL/PREP/BATER.o
COMLNK    : Deleted    /te/aips/31DEC01/SUL/PREP/BATER.f
COMLNK    : Date       Thu Apr  4 07:53:51 MST 2002
PP        : Preprocess /te/aips/31DEC01/AIPS/PGM/BSTRT1.FOR
PP        : into       /te/aips/31DEC01/SUL/PREP/BSTRT1.f
FC        : Date       Thu Apr  4 07:53:52 MST 2002
FC        : Interpret  FC  \
FC        :            /te/aips/31DEC01/SUL/PREP/BSTRT1.f
FC        : as         LIST=FALSE PURGE=FALSE
FC        : plus       /opt/local/SUN2/SUNWspro/bin/f77 -c -fns -fsimple=1 -xarch=v8plusa -xlibmopt -dalign -ansi -u -ansi -u -O3 \
FC        :            /te/aips/31DEC01/SUL/PREP/BSTRT1.f
ANSI extension: compiler flag invokes nonStandard feature
/te/aips/31DEC01/SUL/PREP/BSTRT1.f:
 MAIN bstrt1:
FC        : Compile of /te/aips/31DEC01/SUL/PREP/BSTRT1.f
FC        : ends successfully.
LINK      : Date is... Thu Apr  4 07:53:57 MST 2002
LINK      : Interpret  LINK \
LINK      :            /te/aips/31DEC01/SUL/PREP/BSTRT1.o
LINK      : as         PURGE=FALSE REPLACE=TRUE SAVE=TRUE STRIP=TRUE
LINK      : plus       /opt/local/SUN2/SUNWspro/bin/f77 \
LINK      :            /te/aips/31DEC01/SUL/PREP/BSTRT1.o \
LINK      :            /te/aips/31DEC01/SUL/LIBR/AIPSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/YSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/YSS/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/GNU/libreadline.a \ 
LINK      :            -ltermcap \ 
LINK      :            -lsocket -lnsl -xarch=v8plusa -dalign -xlibmopt -s \
LINK      :            -o /te/aips/31DEC01/SUL/PREP/BSTRT1.EXE
Undefined			first referenced
 symbol  			    in file
__bb_init_func                      /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB(ZACTV9.o)
ld: fatal: Symbol referencing errors. No output written to /te/aips/31DEC01/SUL/PREP/BSTRT1.EXE
LINK      : Status from /opt/local/SUN2/SUNWspro/bin/f77 is 1
LINK      : Link of    /te/aips/31DEC01/SUL/PREP/BSTRT1.o
LINK      : dies from wimpy compiler
COMLNK    : Link failed!
COMLNK    : Deleted    /te/aips/31DEC01/SUL/PREP/BSTRT1.o
COMLNK    : Deleted    /te/aips/31DEC01/SUL/PREP/BSTRT1.f
COMLNK    : Date       Thu Apr  4 07:53:59 MST 2002
PP        : Preprocess /te/aips/31DEC01/AIPS/PGM/DAIP.FOR
PP        : into       /te/aips/31DEC01/SUL/PREP/DAIP.f
FC        : Date       Thu Apr  4 07:54:01 MST 2002
FC        : Interpret  FC  \
FC        :            /te/aips/31DEC01/SUL/PREP/DAIP.f
FC        : as         LIST=FALSE PURGE=FALSE
FC        : plus       /opt/local/SUN2/SUNWspro/bin/f77 -c -fns -fsimple=1 -xarch=v8plusa -xlibmopt -dalign -ansi -u -ansi -u -O3 \
FC        :            /te/aips/31DEC01/SUL/PREP/DAIP.f
ANSI extension: compiler flag invokes nonStandard feature
/te/aips/31DEC01/SUL/PREP/DAIP.f:
 MAIN daip:
	aipbeg:
	aiperr:
	gtline:
	interp:
	verbs:
	ipcxdr:
	getusr:
FC        : Compile of /te/aips/31DEC01/SUL/PREP/DAIP.f
FC        : ends successfully.
LINK      : Date is... Thu Apr  4 07:54:07 MST 2002
LINK      : Interpret  LINK \
LINK      :            /te/aips/31DEC01/SUL/PREP/DAIP.o
LINK      : as         PURGE=FALSE REPLACE=TRUE SAVE=TRUE STRIP=TRUE
LINK      : plus       /opt/local/SUN2/SUNWspro/bin/f77 \
LINK      :            /te/aips/31DEC01/SUL/PREP/DAIP.o \
LINK      :            /te/aips/31DEC01/SUL/LIBR/AIPSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/YSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/YSS/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/GNU/libreadline.a \ 
LINK      :            -ltermcap \ 
LINK      :            -lsocket -lnsl -xarch=v8plusa -dalign -xlibmopt -s \
LINK      :            -o /te/aips/31DEC01/SUL/PREP/DAIP.EXE
Undefined			first referenced
 symbol  			    in file
__bb_init_func                      /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB(ZACTV9.o)
ld: fatal: Symbol referencing errors. No output written to /te/aips/31DEC01/SUL/PREP/DAIP.EXE
LINK      : Status from /opt/local/SUN2/SUNWspro/bin/f77 is 1
LINK      : Link of    /te/aips/31DEC01/SUL/PREP/DAIP.o
LINK      : dies from wimpy compiler
COMLNK    : Link failed!
COMLNK    : Deleted    /te/aips/31DEC01/SUL/PREP/DAIP.o
COMLNK    : Deleted    /te/aips/31DEC01/SUL/PREP/DAIP.f
COMLNK    : Date       Thu Apr  4 07:54:09 MST 2002
PP        : Preprocess /te/aips/31DEC01/AIPS/PGM/FILAI2.FOR
PP        : into       /te/aips/31DEC01/SUL/PREP/FILAI2.f
FC        : Date       Thu Apr  4 07:54:11 MST 2002
FC        : Interpret  FC  \
FC        :            /te/aips/31DEC01/SUL/PREP/FILAI2.f
FC        : as         LIST=FALSE PURGE=FALSE
FC        : plus       /opt/local/SUN2/SUNWspro/bin/f77 -c -fns -fsimple=1 -xarch=v8plusa -xlibmopt -dalign -ansi -u -ansi -u -O3 \
FC        :            /te/aips/31DEC01/SUL/PREP/FILAI2.f
ANSI extension: compiler flag invokes nonStandard feature
/te/aips/31DEC01/SUL/PREP/FILAI2.f:
 MAIN filai2:
FC        : Compile of /te/aips/31DEC01/SUL/PREP/FILAI2.f
FC        : ends successfully.
LINK      : Date is... Thu Apr  4 07:54:27 MST 2002
LINK      : Interpret  LINK \
LINK      :            /te/aips/31DEC01/SUL/PREP/FILAI2.o
LINK      : as         PURGE=FALSE REPLACE=TRUE SAVE=TRUE STRIP=TRUE
LINK      : plus       /opt/local/SUN2/SUNWspro/bin/f77 \
LINK      :            /te/aips/31DEC01/SUL/PREP/FILAI2.o \
LINK      :            /te/aips/31DEC01/SUL/LIBR/AIPSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/YSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/YSS/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/GNU/libreadline.a \ 
LINK      :            -ltermcap \ 
LINK      :            -lsocket -lnsl -xarch=v8plusa -dalign -xlibmopt -s \
LINK      :            -o /te/aips/31DEC01/SUL/PREP/FILAI2.EXE
Undefined			first referenced
 symbol  			    in file
__bb_init_func                      /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB(ZCPU.o)
ld: fatal: Symbol referencing errors. No output written to /te/aips/31DEC01/SUL/PREP/FILAI2.EXE
LINK      : Status from /opt/local/SUN2/SUNWspro/bin/f77 is 1
LINK      : Link of    /te/aips/31DEC01/SUL/PREP/FILAI2.o
LINK      : dies from wimpy compiler
COMLNK    : Link failed!
COMLNK    : Deleted    /te/aips/31DEC01/SUL/PREP/FILAI2.o
COMLNK    : Deleted    /te/aips/31DEC01/SUL/PREP/FILAI2.f
COMLNK    : Date       Thu Apr  4 07:54:28 MST 2002
PP        : Preprocess /te/aips/31DEC01/AIPS/PGM/FILAIP.FOR
PP        : into       /te/aips/31DEC01/SUL/PREP/FILAIP.f
FC        : Date       Thu Apr  4 07:54:30 MST 2002
FC        : Interpret  FC  \
FC        :            /te/aips/31DEC01/SUL/PREP/FILAIP.f
FC        : as         LIST=FALSE PURGE=FALSE
FC        : plus       /opt/local/SUN2/SUNWspro/bin/f77 -c -fns -fsimple=1 -xarch=v8plusa -xlibmopt -dalign -ansi -u -ansi -u -O3 \
FC        :            /te/aips/31DEC01/SUL/PREP/FILAIP.f
ANSI extension: compiler flag invokes nonStandard feature
/te/aips/31DEC01/SUL/PREP/FILAIP.f:
 MAIN filaip:
FC        : Compile of /te/aips/31DEC01/SUL/PREP/FILAIP.f
FC        : ends successfully.
LINK      : Date is... Thu Apr  4 07:54:43 MST 2002
LINK      : Interpret  LINK \
LINK      :            /te/aips/31DEC01/SUL/PREP/FILAIP.o
LINK      : as         PURGE=FALSE REPLACE=TRUE SAVE=TRUE STRIP=TRUE
LINK      : plus       /opt/local/SUN2/SUNWspro/bin/f77 \
LINK      :            /te/aips/31DEC01/SUL/PREP/FILAIP.o \
LINK      :            /te/aips/31DEC01/SUL/LIBR/AIPSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/YSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/YSS/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/GNU/libreadline.a \ 
LINK      :            -ltermcap \ 
LINK      :            -lsocket -lnsl -xarch=v8plusa -dalign -xlibmopt -s \
LINK      :            -o /te/aips/31DEC01/SUL/PREP/FILAIP.EXE
Undefined			first referenced
 symbol  			    in file
__bb_init_func                      /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB(ZCPU.o)
ld: fatal: Symbol referencing errors. No output written to /te/aips/31DEC01/SUL/PREP/FILAIP.EXE
LINK      : Status from /opt/local/SUN2/SUNWspro/bin/f77 is 1
LINK      : Link of    /te/aips/31DEC01/SUL/PREP/FILAIP.o
LINK      : dies from wimpy compiler
COMLNK    : Link failed!
COMLNK    : Deleted    /te/aips/31DEC01/SUL/PREP/FILAIP.o
COMLNK    : Deleted    /te/aips/31DEC01/SUL/PREP/FILAIP.f
COMLNK    : Date       Thu Apr  4 07:54:44 MST 2002
PP        : Preprocess /te/aips/31DEC01/AIPS/PGM/FILINI.FOR
PP        : into       /te/aips/31DEC01/SUL/PREP/FILINI.f
FC        : Date       Thu Apr  4 07:54:46 MST 2002
FC        : Interpret  FC  \
FC        :            /te/aips/31DEC01/SUL/PREP/FILINI.f
FC        : as         LIST=FALSE PURGE=FALSE
FC        : plus       /opt/local/SUN2/SUNWspro/bin/f77 -c -fns -fsimple=1 -xarch=v8plusa -xlibmopt -dalign -ansi -u -ansi -u -O3 \
FC        :            /te/aips/31DEC01/SUL/PREP/FILINI.f
ANSI extension: compiler flag invokes nonStandard feature
/te/aips/31DEC01/SUL/PREP/FILINI.f:
 MAIN filini:
FC        : Compile of /te/aips/31DEC01/SUL/PREP/FILINI.f
FC        : ends successfully.
LINK      : Date is... Thu Apr  4 07:54:59 MST 2002
LINK      : Interpret  LINK \
LINK      :            /te/aips/31DEC01/SUL/PREP/FILINI.o
LINK      : as         PURGE=FALSE REPLACE=TRUE SAVE=TRUE STRIP=TRUE
LINK      : plus       /opt/local/SUN2/SUNWspro/bin/f77 \
LINK      :            /te/aips/31DEC01/SUL/PREP/FILINI.o \
LINK      :            /te/aips/31DEC01/SUL/LIBR/AIPSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/YSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/YSS/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/GNU/libreadline.a \ 
LINK      :            -ltermcap \ 
LINK      :            -lsocket -lnsl -xarch=v8plusa -dalign -xlibmopt -s \
LINK      :            -o /te/aips/31DEC01/SUL/PREP/FILINI.EXE
Undefined			first referenced
 symbol  			    in file
__bb_init_func                      /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB(ZCMPR2.o)
ld: fatal: Symbol referencing errors. No output written to /te/aips/31DEC01/SUL/PREP/FILINI.EXE
LINK      : Status from /opt/local/SUN2/SUNWspro/bin/f77 is 1
LINK      : Link of    /te/aips/31DEC01/SUL/PREP/FILINI.o
LINK      : dies from wimpy compiler
COMLNK    : Link failed!
COMLNK    : Deleted    /te/aips/31DEC01/SUL/PREP/FILINI.o
COMLNK    : Deleted    /te/aips/31DEC01/SUL/PREP/FILINI.f
COMLNK    : Date       Thu Apr  4 07:55:00 MST 2002
PP        : Preprocess /te/aips/31DEC01/AIPS/PGM/GRIPR.FOR
PP        : into       /te/aips/31DEC01/SUL/PREP/GRIPR.f
FC        : Date       Thu Apr  4 07:55:02 MST 2002
FC        : Interpret  FC  \
FC        :            /te/aips/31DEC01/SUL/PREP/GRIPR.f
FC        : as         LIST=FALSE PURGE=FALSE
FC        : plus       /opt/local/SUN2/SUNWspro/bin/f77 -c -fns -fsimple=1 -xarch=v8plusa -xlibmopt -dalign -ansi -u -ansi -u -O3 \
FC        :            /te/aips/31DEC01/SUL/PREP/GRIPR.f
ANSI extension: compiler flag invokes nonStandard feature
/te/aips/31DEC01/SUL/PREP/GRIPR.f:
 MAIN gripr:
	grigtl:
	griini:
	griint:
	gripol:
	cuc:
FC        : Compile of /te/aips/31DEC01/SUL/PREP/GRIPR.f
FC        : ends successfully.
LINK      : Date is... Thu Apr  4 07:55:18 MST 2002
LINK      : Interpret  LINK \
LINK      :            /te/aips/31DEC01/SUL/PREP/GRIPR.o
LINK      : as         PURGE=FALSE REPLACE=TRUE SAVE=TRUE STRIP=TRUE
LINK      : plus       /opt/local/SUN2/SUNWspro/bin/f77 \
LINK      :            /te/aips/31DEC01/SUL/PREP/GRIPR.o \
LINK      :            /te/aips/31DEC01/SUL/LIBR/AIPSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/YSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/YSS/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/GNU/libreadline.a \ 
LINK      :            -ltermcap \ 
LINK      :            -lsocket -lnsl -xarch=v8plusa -dalign -xlibmopt -s \
LINK      :            -o /te/aips/31DEC01/SUL/PREP/GRIPR.EXE
Undefined			first referenced
 symbol  			    in file
__bb_init_func                      /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB(ZCMPR2.o)
ld: fatal: Symbol referencing errors. No output written to /te/aips/31DEC01/SUL/PREP/GRIPR.EXE
LINK      : Status from /opt/local/SUN2/SUNWspro/bin/f77 is 1
LINK      : Link of    /te/aips/31DEC01/SUL/PREP/GRIPR.o
LINK      : dies from wimpy compiler
COMLNK    : Link failed!
COMLNK    : Deleted    /te/aips/31DEC01/SUL/PREP/GRIPR.o
COMLNK    : Deleted    /te/aips/31DEC01/SUL/PREP/GRIPR.f
COMLNK    : Date       Thu Apr  4 07:55:20 MST 2002
PP        : Preprocess /te/aips/31DEC01/AIPS/PGM/POPSGN.FOR
PP        : into       /te/aips/31DEC01/SUL/PREP/POPSGN.f
FC        : Date       Thu Apr  4 07:55:21 MST 2002
FC        : Interpret  FC  \
FC        :            /te/aips/31DEC01/SUL/PREP/POPSGN.f
FC        : as         LIST=FALSE PURGE=FALSE
FC        : plus       /opt/local/SUN2/SUNWspro/bin/f77 -c -fns -fsimple=1 -xarch=v8plusa -xlibmopt -dalign -ansi -u -ansi -u -O3 \
FC        :            /te/aips/31DEC01/SUL/PREP/POPSGN.f
ANSI extension: compiler flag invokes nonStandard feature
/te/aips/31DEC01/SUL/PREP/POPSGN.f:
 MAIN popsgn:
	error:
	interg:
FC        : Compile of /te/aips/31DEC01/SUL/PREP/POPSGN.f
FC        : ends successfully.
LINK      : Date is... Thu Apr  4 07:55:30 MST 2002
LINK      : Interpret  LINK \
LINK      :            /te/aips/31DEC01/SUL/PREP/POPSGN.o
LINK      : as         PURGE=FALSE REPLACE=TRUE SAVE=TRUE STRIP=TRUE
LINK      : plus       /opt/local/SUN2/SUNWspro/bin/f77 \
LINK      :            /te/aips/31DEC01/SUL/PREP/POPSGN.o \
LINK      :            /te/aips/31DEC01/SUL/LIBR/AIPSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/YSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/YSS/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/GNU/libreadline.a \ 
LINK      :            -ltermcap \ 
LINK      :            -lsocket -lnsl -xarch=v8plusa -dalign -xlibmopt -s \
LINK      :            -o /te/aips/31DEC01/SUL/PREP/POPSGN.EXE
Undefined			first referenced
 symbol  			    in file
__bb_init_func                      /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB(ZCPU.o)
ld: fatal: Symbol referencing errors. No output written to /te/aips/31DEC01/SUL/PREP/POPSGN.EXE
LINK      : Status from /opt/local/SUN2/SUNWspro/bin/f77 is 1
LINK      : Link of    /te/aips/31DEC01/SUL/PREP/POPSGN.o
LINK      : dies from wimpy compiler
COMLNK    : Link failed!
COMLNK    : Deleted    /te/aips/31DEC01/SUL/PREP/POPSGN.o
COMLNK    : Deleted    /te/aips/31DEC01/SUL/PREP/POPSGN.f
COMLNK    : Date       Thu Apr  4 07:55:32 MST 2002
PP        : Preprocess /te/aips/31DEC01/AIPS/PGM/QMNGR.FOR
PP        : into       /te/aips/31DEC01/SUL/PREP/QMNGR.f
FC        : Date       Thu Apr  4 07:55:34 MST 2002
FC        : Interpret  FC  \
FC        :            /te/aips/31DEC01/SUL/PREP/QMNGR.f
FC        : as         LIST=FALSE PURGE=FALSE
FC        : plus       /opt/local/SUN2/SUNWspro/bin/f77 -c -fns -fsimple=1 -xarch=v8plusa -xlibmopt -dalign -ansi -u -ansi -u -O3 \
FC        :            /te/aips/31DEC01/SUL/PREP/QMNGR.f
ANSI extension: compiler flag invokes nonStandard feature
/te/aips/31DEC01/SUL/PREP/QMNGR.f:
 MAIN qmngr:
	qmngin:
	qmngdo:
FC        : Compile of /te/aips/31DEC01/SUL/PREP/QMNGR.f
FC        : ends successfully.
LINK      : Date is... Thu Apr  4 07:55:39 MST 2002
LINK      : Interpret  LINK \
LINK      :            /te/aips/31DEC01/SUL/PREP/QMNGR.o
LINK      : as         PURGE=FALSE REPLACE=TRUE SAVE=TRUE STRIP=TRUE
LINK      : plus       /opt/local/SUN2/SUNWspro/bin/f77 \
LINK      :            /te/aips/31DEC01/SUL/PREP/QMNGR.o \
LINK      :            /te/aips/31DEC01/SUL/LIBR/AIPSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/YSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/YSS/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/GNU/libreadline.a \ 
LINK      :            -ltermcap \ 
LINK      :            -lsocket -lnsl -xarch=v8plusa -dalign -xlibmopt -s \
LINK      :            -o /te/aips/31DEC01/SUL/PREP/QMNGR.EXE
Undefined			first referenced
 symbol  			    in file
__bb_init_func                      /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB(ZACTV9.o)
ld: fatal: Symbol referencing errors. No output written to /te/aips/31DEC01/SUL/PREP/QMNGR.EXE
LINK      : Status from /opt/local/SUN2/SUNWspro/bin/f77 is 1
LINK      : Link of    /te/aips/31DEC01/SUL/PREP/QMNGR.o
LINK      : dies from wimpy compiler
COMLNK    : Link failed!
COMLNK    : Deleted    /te/aips/31DEC01/SUL/PREP/QMNGR.o
COMLNK    : Deleted    /te/aips/31DEC01/SUL/PREP/QMNGR.f
COMLNK    : Date       Thu Apr  4 07:55:40 MST 2002
PP        : Preprocess /te/aips/31DEC01/AIPS/PGM/RECAT.FOR
PP        : into       /te/aips/31DEC01/SUL/PREP/RECAT.f
FC        : Date       Thu Apr  4 07:55:42 MST 2002
FC        : Interpret  FC  \
FC        :            /te/aips/31DEC01/SUL/PREP/RECAT.f
FC        : as         LIST=FALSE PURGE=FALSE
FC        : plus       /opt/local/SUN2/SUNWspro/bin/f77 -c -fns -fsimple=1 -xarch=v8plusa -xlibmopt -dalign -ansi -u -ansi -u -O3 \
FC        :            /te/aips/31DEC01/SUL/PREP/RECAT.f
ANSI extension: compiler flag invokes nonStandard feature
/te/aips/31DEC01/SUL/PREP/RECAT.f:
 MAIN recat:
	getusr:
	rebild:
	makcat:
	catins:
FC        : Compile of /te/aips/31DEC01/SUL/PREP/RECAT.f
FC        : ends successfully.
LINK      : Date is... Thu Apr  4 07:55:46 MST 2002
LINK      : Interpret  LINK \
LINK      :            /te/aips/31DEC01/SUL/PREP/RECAT.o
LINK      : as         PURGE=FALSE REPLACE=TRUE SAVE=TRUE STRIP=TRUE
LINK      : plus       /opt/local/SUN2/SUNWspro/bin/f77 \
LINK      :            /te/aips/31DEC01/SUL/PREP/RECAT.o \
LINK      :            /te/aips/31DEC01/SUL/LIBR/AIPSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/YSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/YSS/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/GNU/libreadline.a \ 
LINK      :            -ltermcap \ 
LINK      :            -lsocket -lnsl -xarch=v8plusa -dalign -xlibmopt -s \
LINK      :            -o /te/aips/31DEC01/SUL/PREP/RECAT.EXE
Undefined			first referenced
 symbol  			    in file
__bb_init_func                      /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB(ZCPU.o)
ld: fatal: Symbol referencing errors. No output written to /te/aips/31DEC01/SUL/PREP/RECAT.EXE
LINK      : Status from /opt/local/SUN2/SUNWspro/bin/f77 is 1
LINK      : Link of    /te/aips/31DEC01/SUL/PREP/RECAT.o
LINK      : dies from wimpy compiler
COMLNK    : Link failed!
COMLNK    : Deleted    /te/aips/31DEC01/SUL/PREP/RECAT.o
COMLNK    : Deleted    /te/aips/31DEC01/SUL/PREP/RECAT.f
COMLNK    : Date       Thu Apr  4 07:55:47 MST 2002
PP        : Preprocess /te/aips/31DEC01/AIPS/PGM/SETSP.FOR
PP        : into       /te/aips/31DEC01/SUL/PREP/SETSP.f
FC        : Date       Thu Apr  4 07:55:49 MST 2002
FC        : Interpret  FC  \
FC        :            /te/aips/31DEC01/SUL/PREP/SETSP.f
FC        : as         LIST=FALSE PURGE=FALSE
FC        : plus       /opt/local/SUN2/SUNWspro/bin/f77 -c -fns -fsimple=1 -xarch=v8plusa -xlibmopt -dalign -ansi -u -ansi -u -O3 \
FC        :            /te/aips/31DEC01/SUL/PREP/SETSP.f
ANSI extension: compiler flag invokes nonStandard feature
/te/aips/31DEC01/SUL/PREP/SETSP.f:
 MAIN setsp:
	spshow:
	spset:
FC        : Compile of /te/aips/31DEC01/SUL/PREP/SETSP.f
FC        : ends successfully.
LINK      : Date is... Thu Apr  4 07:56:15 MST 2002
LINK      : Interpret  LINK \
LINK      :            /te/aips/31DEC01/SUL/PREP/SETSP.o
LINK      : as         PURGE=FALSE REPLACE=TRUE SAVE=TRUE STRIP=TRUE
LINK      : plus       /opt/local/SUN2/SUNWspro/bin/f77 \
LINK      :            /te/aips/31DEC01/SUL/PREP/SETSP.o \
LINK      :            /te/aips/31DEC01/SUL/LIBR/AIPSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/YSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/YSS/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/GNU/libreadline.a \ 
LINK      :            -ltermcap \ 
LINK      :            -lsocket -lnsl -xarch=v8plusa -dalign -xlibmopt -s \
LINK      :            -o /te/aips/31DEC01/SUL/PREP/SETSP.EXE
Undefined			first referenced
 symbol  			    in file
__bb_init_func                      /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB(ZCPU.o)
ld: fatal: Symbol referencing errors. No output written to /te/aips/31DEC01/SUL/PREP/SETSP.EXE
LINK      : Status from /opt/local/SUN2/SUNWspro/bin/f77 is 1
LINK      : Link of    /te/aips/31DEC01/SUL/PREP/SETSP.o
LINK      : dies from wimpy compiler
COMLNK    : Link failed!
COMLNK    : Deleted    /te/aips/31DEC01/SUL/PREP/SETSP.o
COMLNK    : Deleted    /te/aips/31DEC01/SUL/PREP/SETSP.f
COMLNK    : Date       Thu Apr  4 07:56:17 MST 2002
PP        : Preprocess /te/aips/31DEC01/AIPS/PGM/SETTVP.FOR
PP        : into       /te/aips/31DEC01/SUL/PREP/SETTVP.f
FC        : Date       Thu Apr  4 07:56:19 MST 2002
FC        : Interpret  FC  \
FC        :            /te/aips/31DEC01/SUL/PREP/SETTVP.f
FC        : as         LIST=FALSE PURGE=FALSE
FC        : plus       /opt/local/SUN2/SUNWspro/bin/f77 -c -fns -fsimple=1 -xarch=v8plusa -xlibmopt -dalign -ansi -u -ansi -u -O3 \
FC        :            /te/aips/31DEC01/SUL/PREP/SETTVP.f
ANSI extension: compiler flag invokes nonStandard feature
/te/aips/31DEC01/SUL/PREP/SETTVP.f:
 MAIN settvp:
	kuestv:
FC        : Compile of /te/aips/31DEC01/SUL/PREP/SETTVP.f
FC        : ends successfully.
LINK      : Date is... Thu Apr  4 07:56:27 MST 2002
LINK      : Interpret  LINK \
LINK      :            /te/aips/31DEC01/SUL/PREP/SETTVP.o
LINK      : as         PURGE=FALSE REPLACE=TRUE SAVE=TRUE STRIP=TRUE
LINK      : plus       /opt/local/SUN2/SUNWspro/bin/f77 \
LINK      :            /te/aips/31DEC01/SUL/PREP/SETTVP.o \
LINK      :            /te/aips/31DEC01/SUL/LIBR/AIPSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/YSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/YSS/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSUB/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB \ 
LINK      :            /te/aips/31DEC01/SUL/LIBR/GNU/libreadline.a \ 
LINK      :            -ltermcap \ 
LINK      :            -lsocket -lnsl -xarch=v8plusa -dalign -xlibmopt -s \
LINK      :            -o /te/aips/31DEC01/SUL/PREP/SETTVP.EXE
Undefined			first referenced
 symbol  			    in file
__bb_init_func                      /te/aips/31DEC01/SUL/LIBR/APLSOL/SUBLIB(ZCPU.o)
ld: fatal: Symbol referencing errors. No output written to /te/aips/31DEC01/SUL/PREP/SETTVP.EXE
LINK      : Status from /opt/local/SUN2/SUNWspro/bin/f77 is 1
LINK      : Link of    /te/aips/31DEC01/SUL/PREP/SETTVP.o
LINK      : dies from wimpy compiler
COMLNK    : Link failed!
COMLNK    : Deleted    /te/aips/31DEC01/SUL/PREP/SETTVP.o
COMLNK    : Deleted    /te/aips/31DEC01/SUL/PREP/SETTVP.f
INSTEP4    : Failure in $AIPPGM/...
INSTEP4    : compiling/linking.
INSTEP4    : Dies of unnatural causes at Thu Apr  4 07:56:28 MST 2002



More information about the Daip mailing list