Using FORTRAN on LINUX machines
Under Linux, the usual fortran compiler, f77, is unavailable.
Instead, you can use the g77 compiler in the gnu locker:
athena% add gnu
athena% g77 file.f
There are some slight differences between g77 (the GNU fortran
compiler), and f77, but it should be easy to fix code to work under
the gnu compiler. For more info, read 'man g77' (after adding gnu) or
consult the web site
http://world.std.com/~burley/g77.html
|