我怎样才能运行示例犰狳程序

时间:2016-05-31 18:12:14

标签: c++ g++ armadillo fedora-23

我正在尝试运行最小armadillo example program(以下是为了方便)

#include <iostream>
#include <armadillo>

using namespace std;
using namespace arma;

int main()
  {
  mat A = randu<mat>(4,5);
  mat B = randu<mat>(4,5);
  cout << A*B.t() << endl; 
  return 0;
  }

我正在运行Linux fedora 23发行版并安装了armadillo软件包。

$ sudo dnf list armadillo
Last metadata expiration check: 1:04:12 ago on Tue May 31 17:57:36 2016.
Installed Packages
armadillo.x86_64        6.700.6-1.fc23         @updates
Available Packages
armadillo.i686          6.700.6-1.fc23         updates 

虽然当我从当前目录编译示例程序时,我得到了:

$ g++ example.cpp -o example -O2 -larmadillo
example.cpp:2:21: fatal error: armadillo: No such file or directory
compilation terminated.

1 个答案:

答案 0 :(得分:1)

在Fedora上,您还需要安装相应的开发包:armadillo-devel。这提供了编译使用armadillo的C ++程序所需的头文件。

例如:

sudo dnf install armadillo-devel