使用 mlpack 时抛出犰狳异常

Armadillo Exception Thrown when using mlpack

我正在使用在 Armadillo 线性代数库之上运行的 mlpack 库。引用 debug.hpp 文件中的行已引发异常,如下所示:

//! if state is true, abort program
template<typename T1>
arma_hot
inline
void
arma_check(const bool state, const T1& x)
  {
  if(state)  { arma_stop_logic_error(arma_str::str_wrapper(x)); }
  }

附上讯息: Exception thrown at 0x00007FFFEEC912DE (vcruntime140.dll) in tutorial.exe: 0xC0000005: Access violation reading location 0x0000019B35203060.

关于如何阅读此错误消息以及我可以采取什么措施的任何建议?谢谢

尝试安装 visual studio 2015 的 x64 和 x86 可再分发版,如果您没有它们。

如果它仍然不起作用,请检查编译设置:您需要使用 /MT 标志进行静态编译或使用 /MD 标志进行动态编译。

此标志在 Project properties/ C/C++ / Code generation.