[26643] in Athena Bugs
Fortran runs under 9.3 but not 9.4
daemon@ATHENA.MIT.EDU (Jennifer Tu)
Thu Sep 29 15:46:41 2005
Date: Thu, 29 Sep 2005 15:45:59 -0400 (EDT)
From: Jennifer Tu <jtu@mit.edu>
To: bugs@mit.edu
Message-ID: <Pine.GSO.4.62L.0509291543340.11992@tiki-god.mit.edu>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed
X-Spam-Score: 1.041
X-Spam-Level: * (1.041)
X-Spam-Flag: NO
Errors-To: bugs-bounces@mit.edu
I'm not sure if this is the appropriate place to send this, but Jacob
suggested it might be ok since it affects dialup users.
Fortran (f77) doesn't seem to run under 9.3 Suns, but runs fine under 9.4.
This is a problem for dial-up users who wish to use Fortran, since the
dial-ups seem to all be 9.3.
--Trying to run code under 9.3--
[multics]:[15:35]:/tmp> vi foo.f
[multics]:[15:36]:/tmp> f77 foo.f
NOTICE: Invoking /mit/sunsoft_v10/SUNWspro/bin/f90 -f77 -ftrap=%none foo.f
foo.f:
MAIN foo:
ld: fatal: library -lmtsk: not found
ld: fatal: File processing errors. No output written to a.out
[multics]:[15:36]:/tmp> f90 foo.f
ld: fatal: library -lmtsk: not found
ld: fatal: File processing errors. No output written to a.out
[multics]:[15:36]:/tmp> cat foo.f
program foo
write(*,*) 'Hello, world!'
end
--Jennifer