Путеводитель по Руководству Linux

  User  |  Syst  |  Libr  |  Device  |  Files  |  Other  |  Admin  |  Head  |



   fort77.1p    ( 1 )

компилятор ФОРТРАНА (FORTRAN) (FORTRAN compiler (FORTRAN))

Примеры (Examples)

The following usage example compiles xyz.f and creates the
       executable file foo:

fort77 -o foo xyz.f

The following example compiles xyz.f and creates the object file xyz.o:

fort77 -c xyz.f

The following example compiles xyz.f and creates the executable file a.out:

fort77 xyz.f

The following example compiles xyz.f, links it with b.o, and creates the executable a.out:

fort77 xyz.f b.o