DJGPP

 

Here is how I ran the FORTRAN compiler from the discs on my machine: ( from a student)

Add the following to autoexec.bat:  CALL C:\gcc-2.95.2\mingw32.bat

Then:  write program
       save with .for extension
       compile with: g77 [file name.for] -o [executable name.exe]
       type name of executable to run
  Example:
C:\CS\fortran>edit program.for
C:\CS\fortran>g77 program.for -o program.exe
C:\CS\fortran>program

 

 

Lahey FORTRAN

 

Compile:   lf95 filename.f90

Execute:    filename

 

Raven

Compile:  FORTRAN filename.for

            or FORTRAN filename.for /list

Link:  link filename

Execute:  run filename

            or run filename /output= filename.out