使用 PGI 编译器针对 Armadillo 库生成 link 的 Makefile

Makefile to link against Armadillo library using the PGI compiler

我正在尝试在 Makefile 中使用 PGI 编译器的 -U__GNUG__ 标志,尝试编译文件夹中的所有 .cpp 文件,链接到犰狳(使用 g++ 编译器,代码编译和运行.) 我的 Makefile 如下:

CC=pgc++ 
CFLAGS= -U__GNUG__  -std=c++11 -fast -acc  -Minfo=accel -larmadillo -lgsl -w 

all: 
   ${CC} ${CFLAGS} *.cpp -o cg 
clean: 
   rm -Rf cg pgprof* *.o core

似乎目标文件的编译工作正常,但无法编译最终的可执行文件。这个 Makefile 有什么问题?

编译代码使用:

~$ make

我收到以下错误:

cis.o: In function `arma::Col<double>::pod_type arma::op_norm::vec_norm_2<arma::Col<double> >(arma::Proxy<arma::Col<double> > const&, arma::arma_not_cx<arma::Col<double>::elem_type>::result const*)':
/usr/local/include/armadillo_bits/debug.hpp:173: undefined reference to `isfinite'
cis.o: In function `double arma::op_norm::vec_norm_2_direct_std<double>(arma::Mat<double> const&)':
/usr/local/include/armadillo_bits/debug.hpp:173: undefined reference to `isfinite'
cis.o: In function `void arma::arma_ostream::print_elem<double>(std::ostream&, double const&, bool)':
/usr/local/include/armadillo_bits/debug.hpp:173: undefined reference to `isfinite'
cis.o: In function `std::isfinite(double)':
/usr/local/include/armadillo_bits/debug.hpp:173: undefined reference to `isfinite'
cis.o: In function `bool arma::arma_isfinite<double>(double)':
/usr/local/include/armadillo_bits/debug.hpp:173: undefined reference to `isfinite'
davidson.o:davidson.cpp:(.gnu.linkonce.t._ZN4arma7op_norm10vec_norm_2INS_11subview_colIdEEEENT_8pod_typeERKNS_5ProxyIS4_EEPKNS_11arma_not_cxINS4_9elem_typeEE6resultE+0x2bb): more undefined references to `isfinite' follow
pgacclnk: child process exit status 1: /usr/bin/ld
make: *** [all] Error 2

应该通过包含标志 -U__GNUG__.

来修复

任何建议将不胜感激。

这似乎是 PGI pgc++ 编译器的问题,其中 "std::isfinite" 在 C++11 存在的情况下无法正确处理。删除“--c++11”标志将解决该问题。

我已经添加了一个问题报告,PGI TPR#22065,我们希望在未来的版本中解决这个问题。