As my knowledge, gcc tools with Linux OS often include fortran compiler.
For example, in RedHat 7.3, "g77 *.f" can create an executable file a.out
for running your program by "./a.out" . In FC4, "gcc -xf77 *.f" may be used.
So in your linux OS terminal, try to type "man gcc" to look for fortran compiler.
|