What is libg2c library?

巧了我就是萌 提交于 2019-12-22 01:25:09

问题


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!


回答1:


What is GNU Fortran?

g77 consists of several components:

  • A modified version of the gcc command, which also might be installed as the system's cc command. (In many cases, cc refers to the system's “native” C compiler, which might be a non-GNU compiler, or an older version of gcc considered more stable or that is used to build the operating system kernel.)

  • The g77 command itself, which also might be installed as the system's f77 command.

  • The libg2c run-time library. 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.

    libg2c is just the unique name g77 gives to its version of libf2c to distinguish it from any copy of libf2c installed from f2c (or versions of g77 that built libf2c under that same name) on the system.

You may think of it as, libg2c is to g77 as libc is to gcc.

Note that as of the GCC 4.x series, g77 has been discontinued, replaced by gfortran, which produces programs that do not require an extra libg2c runtime library.




回答2:


"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




回答3:


Installing compat-gcc-34-g77 solves this requirement.
(gcc-34 must be replaced by your gcc version)



来源:https://stackoverflow.com/questions/2406581/what-is-libg2c-library

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!