[15780] in Athena Bugs
Re: sun4 8.1.16: cygnus
daemon@ATHENA.MIT.EDU (Jacob Morzinski)
Tue Feb 3 20:42:03 1998
Date: Tue, 3 Feb 1998 20:42:01 -0500 (EST)
From: Jacob Morzinski <jmorzins@MIT.EDU>
To: "Adrian J. Sosa" <spidey@MIT.EDU>
Cc: bugs@MIT.EDU
In-Reply-To: "[15779] in Athena Bugs"
Adrain Sosa <spidey@mit.edu> wrote:
> What's wrong:
> >add cygnus
> >/mit/cygnus/`machtype`bin/gcc -o tri count.c
> /mit/cygnus/sun4bin/gcc: Command not found.
I saw your report to bugs, and am offering a few comments.
`machtype`bin hasn't worked as a way to get at bin directories
since the arrival of the SGI's. Even the $bindir construction
was stretched to near-breaking by the SGI's (they set bindir to
"arch/sgi_53/bin"); and $bindir is two years into an plan to
stop supporting it.
The most robust way to find the binary directory of a locker is
to use "athdir":
`athdir /mit/cygnus bin`/gcc -o tri count.c
Another way is to make use of the locker structure supported by
all recent lockers:
/mit/cygnus/arch/$ATHENA_SYS/bin/gcc -o tri count.c
Hope this helps,