GNU f77/gfortran 和 f2c 的关系?
今天的 g77/gfortran 和 f2c 是什么关系?还有发展吗?一个人是否从其他进步中受益(例如错误和性能)?
谁在开发 f2c(如果不是由 g77/gfortran 开发人员完成)?
谢谢
What is the relation of g77/gfortran and f2c today? Is there still development going on? Is one benefiting from the others advances (like bugs and performance)?
Who is developing f2c (if it's not done by the g77/gfortran developers)?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
g77 不再受支持并且不再进行处理。 G77 被放弃,Gfortran 于 2005 年 4 月 20 日开始随 gcc-4.0 一起发布。最后的 gcc-3.*(带有 g77)于 2006 年 3 月 6 日正式发布。
我认为 f2c 也是如此。代码库位于 netlib 上,最后的更新日志条目是 1989 年 8 月 31 日。
所有 Gnu 开发都在gfortran。 Gfortran 应该可以在 Fortran77 代码上工作。 Gfortran 是一个本机编译器(如 g77),而不是像 f2c 那样的翻译器。
g77 is no longer supported and is not being worked on. G77 was dropped and Gfortran started being shipped with gcc-4.0 in Apr 20 2005. The last of the gcc-3.* (with g77) was released officially in Mar 06 2006.
I think the same is true for f2c. The codebase is on netlib and the last changelog entry is 31 Aug. 1989.
All the Gnu development is on gfortran. Gfortran is supposed to work on Fortran77 code though. Gfortran is a native compiler (like g77) not a translator like f2c.