I have found the code which links against of 'g2c' library. Why do I need it? Just would like to understand why it might be important and what it does in general.
Thanks!
I have found the code which links against of 'g2c' library. Why do I need it? Just would like to understand why it might be important and what it does in general.
Thanks!
What is GNU Fortran?
You may think of it as,
libg2c
is tog77
aslibc
is togcc
.Note that as of the GCC 4.x series,
g77
has been discontinued, replaced by gfortran, which produces programs that do not require an extralibg2c
runtime library.Installing
compat-gcc-34-g77
solves this requirement.(gcc-34 must be replaced by your gcc version)
"This library contains the machine code needed to support capabilities of the Fortran language that are not directly provided by the machine code generated by the g77 compilation phase." from this link