连接 FORTRAN 和 C++对象文件
我将调用 FORTRAN 中的 C++ 函数,为此我使用 ISO_C_Binding 模块。在使用命令压缩 FORTRAN 主文件和 C++ 函数后,
gfortran -c mlp8.f90
g++ -c mean_cpp.cc
这些命令将创建对象文件,但在链接阶段,按照一些成员的建议,我将使用命令
g++ mlp8.o mean_cpp.o -o main –lgfortran
错误
/Cygnus/cygwin-b20/H-i586-cygwin32/i586-win32/bin/ld:
cannot open –lgfortran: No such a file or directory
Collect2:ld return 1 exit status
Ie 使用 C++ 编译器链接到 FORTRAN 库,但它会给出类似这样的 我认为主要问题是 g++ 链接器无法与 FORTRAN 库链接,因此我可能需要在链接选项中包含一些路径,或者可能需要在g++
编译器,我不知道如何做到这一点,所以请帮助解决这个问题。
I am going to call a C++ function from FORTRAN, for which I am using ISO_C_Binding module. After compaction of the FORTRAN main file and C++ function with commands
gfortran -c mlp8.f90
g++ -c mean_cpp.cc
Which will create the objects files but in the linking phase as suggested by some members I am going to use the commands
g++ mlp8.o mean_cpp.o -o main –lgfortran
I.e. using C++ compiler with linking to FORTRAN libraries but it gives error like
/Cygnus/cygwin-b20/H-i586-cygwin32/i586-win32/bin/ld:
cannot open –lgfortran: No such a file or directory
Collect2:ld return 1 exit status
So I think the main problem is that the g++
linker can not link with the FORTRAN libraries, so may be I need to include some path in the linking option or may be I need to do some setting in the g++
complier, which I don’t know how to do this, so please help to sort out this problem.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该找到文件
libgfortran.*
(例如,使用find / -name "libgfortran.*"
; 的locate
; 或以 Windows 方式Win+g、F3
或任何文件管理器),记录它所在的路径,并在 PATH_RECORDED 是路径的地方执行操作。
尝试这个库列表(从我的 mingw gfortran 中使用 -v 选项获取)
You should find file
libgfortran.*
(e.g. withlocate
offind / -name "libgfortran.*"
; or in windows-wayWin+g, F3
or any file manager), record the path where it is and dowhere PATH_RECORDED is the path.
Try this lib list (got it from my mingw gfortran with -v option)