Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想编译 C 和 fortran 并将它们与 gcc -lgfortran 链接。我已经使用命令行使它工作,并且可以在需要时编写脚本,但我想知道是否可以使用 eclipse C 项目,在该项目中我可以将 C 和 fortran 文件添加到项目中。
我面临的问题是这个项目没有编译 fortran 文件(因此没有链接它们)。有人可以帮我编译和链接这些 fortran 文件吗?
谢谢。
好的。这就是答案。
转到您的 C/C++ 项目属性。
C/C++ Build -> Tool Chain Editor -> 点击选择工具按钮。
在此处添加 GNU fortran 编译器(或您正在使用的任何编译器)。
就是这样 !!!