NCEP CCS Conversion Guide
Issues Converting FORTRAN and C/C++ Programs
Back to Main Page
Topic:  f77 Compiler on frost/snow
Posted by: Julia Zhu
Updated by
Post Date: 08/06/2002
Last Updated: 
Problem:  The f77 compiler is not found or does not exist when you make your executable.  On asp/bsp f77 was simply a link to the xlf compiler.  This link has been removed or phased out on frost/snow.

Solution: Simply replace "f77" compiler with "xlf"

Example:

Change 
   f77 -c program.f
to
   xlf -c program.f
 

Back to Main Page