blob: f0e77ae559af5603fd2d39bff608bc72af0c8ccf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
f2c is a Fortran-to-C converter.
This package includes libf77 and libi77 rolled together as libf2c,
which must be linked to the resulting C code. Thus the general idea
is
f2c foo.f
gcc foo.c -lf2c
Or use the fc script provided in the docs directory. Beware, fc is also
a bash builtin.
If combining with gfortran, you may want to use gfortran's -ff2c
option. See the gfortran man page.
|