error LNK2019: 无法解析的外部符号 _SGETRF_F95,该符号在函数 _MAIN__ 中被引用 Source1.obj
program test use lapack95
use f95_precision
implicit none
! Variables
real :: a(3,3)
data a /1,2,3,4,5,6,7,8,9/
! Body of Console3
print *, 'Hello'
call getrf(a)
end program test
1.png (40.98 KB, 下载次数: 314)
QQ截图20170312165920.png (47.58 KB, 下载次数: 336)
20170312172450.png (38.39 KB, 下载次数: 353)
li913 发表于 2017-3-12 17:00
需要 include
include "lapack.f90"
错误
error LNK2019: 无法解析的外部符号 _SGETRF_F95,该符号在函数 _MAIN__ 中被引用 Source1.obj
错误
fatal error LNK1120: 1 个无法解析的外部命令
Debug\Console4.exe
vvt 发表于 2017-3-12 17:25
我这里不需要include,直接 use,然后包含 mkl_lapack95.lib 就可以运行了。
欢迎光临 Fortran Coder (http://bbs.fcode.cn/) | Powered by Discuz! X3.2 |