LNK1104:无法打开文件'lapack.lib'(QT Creator)

时间:2018-08-31 09:18:54

标签: c++ qt armadillo lapack

目标:

我正在尝试使用 Armadillo

问题:

构建项目时,出现以下错误:

  

错误:“ LNK1104:无法打开文件'lapack.lib'”

代码

project.pro

TEMPLATE = app
CONFIG += console c++11
CONFIG -= app_bundle
CONFIG -= qt

SOURCES += \
        main.cpp

INCLUDEPATH += C:\Qt\Armadillo\armadillo\include

LIBS += \
    -LC:\Qt\Armadillo\armadillo\examples\lib_win64 \
    -llapack_win64_MT \
    -lblas_win64_MT

main.cpp

#include <iostream>
#include <armadillo>

using namespace std;
using namespace arma;

int main()
{
    mat A(2,3);
    A(1,2) = 456.0;
    A.print("A:");

    cout << "Matrix A:" << endl << A << endl;
}

环境

  • 我正在使用QT Creator 4.7.0
  • 拥有犰狳9.100.5
  • 系统为Windows 10

如何解决该错误?

0 个答案:

没有答案