0

我正在尝试在 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__ 来解决。

任何建议将不胜感激。

4

1 回答 1

0

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

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

于 2015-11-05T23:15:44.273 回答