Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.
29336 Discussions

Does Intel Composer XE 2011 contain support for FORTRAN 77?

langloisc
Beginner
593 Views
We are currently looking at purchasing another cluster for our agency and we require the Intel Fortran 77 compiler for one of our models. Is this included in the 2011 suite or did they get rid of it?
0 Kudos
2 Replies
Ron_Green
Moderator
593 Views
Fortran 77 is a subset of Fortran 90. You use 'ifort' command for Fortran 2003, 95, 90, and 77. So no, there is not a separate f77 command, one simply uses 'ifort -fixed' or name your files .f77, .f, .F

There were many vendor extensions in the 'old days' that are supported by ifort too, particularly the popular DEC extensions.

ron
0 Kudos
Steven_L_Intel1
Employee
593 Views
A minor correction - .f77 is not recognized as a file type. .f or .for for fixed-form souce. The Intel compiler supports Fortran IV (Fortran 66), Fortran 77, 90, and 95, most of 2003 and some of 2008. In some cases, you may need a compiler option to select a F77 interpretation that conflicts with later standards, but that is unusual. Most real Fortran 77 code will compile and run fine without anything special.
0 Kudos
Reply