主题:[讨论]fnum找不到
以下是我的程序:
program test
integer :: i
open (unit=10, status = "scratch")
i = fnum(10)
print *, i
close (10)
end program test
但是有问题.
[root@node]# ifort -c test00.f90
[root@node]# ifort -o test test00.f90
/tmp/ifortylNBxl.o: In function `MAIN__':
test00.f90:(.text+0x89): undefined reference to `fnum_'
最开始怀疑是fortran的问题,但是后来发现似乎不完全是。因为我在系统中找不到fnum.c这个库。之后我重新安装了一次GCC4.1.2。安装完之后问题依旧。
根据http://blog.csdn.net/zhangmuyan/article/details/7438895 这个帖子的内容解决了一下,但是却不能将fnum.c加入到库中。
大家有谁了解这个问题吗?
program test
integer :: i
open (unit=10, status = "scratch")
i = fnum(10)
print *, i
close (10)
end program test
但是有问题.
[root@node]# ifort -c test00.f90
[root@node]# ifort -o test test00.f90
/tmp/ifortylNBxl.o: In function `MAIN__':
test00.f90:(.text+0x89): undefined reference to `fnum_'
最开始怀疑是fortran的问题,但是后来发现似乎不完全是。因为我在系统中找不到fnum.c这个库。之后我重新安装了一次GCC4.1.2。安装完之后问题依旧。
根据http://blog.csdn.net/zhangmuyan/article/details/7438895 这个帖子的内容解决了一下,但是却不能将fnum.c加入到库中。
大家有谁了解这个问题吗?