next up previous
Next: About this document ... Up: A Mug's Guide to Previous: A Mug's Guide to

A Mug's Guide to Running Fortran Programs

P. A. Robinson4 January 1993


This is a brief guide that outlines how to write, compile and run a Fortran program under UNIX.

1. Write a Fortran 77 code and place it in a file with the suffix .f

2. The command f77 will compile the code. A workable syntax is f77 -o fileout.e filein.f, which puts the executable version of the Fortran from filein.f into fileout.e. The suffix .e is not necessary, but is useful in distinguishing executable files from others. A better syntax is f77 -O4 -Bstatic -o fileout.e filein.f, which optimizes the executable for faster running.

2'. If your code uses NCARGraphics routines you should substitute the command ncargf77 for f77 above.

3. Type the name of your executable file and it will run.


Acknowledgment: The author thanks G. Geers for proofreading this guide.



Daniel Mitchell
1999-03-08