我对 C++ 还很陌生,但是在 R 上花了很多时间。我正在尝试使用 RcppArmadillo,其中 .cpp 文件是使用 sourceCpp 函数获取的。我的示例代码来自
http://lists.r-forge.r-project.org/pipermail/rcpp-devel/2013-June/006150.html
并显示如下:
#include <RcppArmadillo.h>
using namespace Rcpp ;
// [[Rcpp::depends(RcppArmadillo)]]
// [[Rcpp::export]]
arma::colvec rowSumsRcppArmadillo(NumericMatrix x){
arma::mat X = arma::mat(x.begin(), x.nrow(), x.ncol(), false);
return arma::sum(X, 1);
}
我已经安装了 Rcpp 和 RcppArmadillo 包,并且已经成功地使用 Rcpp(没有 RcppArmadillo)来集成 C++ 函数。但是,对于 RcppArmadillo,我收到以下错误:
> sourceCpp("rowSums.cpp")
ld: warning: directory not found for option '-L/usr/local/lib/gcc/i686-apple- darwin8/4.2.3/x86_64'
ld: warning: directory not found for option '-L/usr/local/lib/x86_64'
ld: warning: directory not found for option '-L/usr/local/lib/gcc/i686-apple-darwin8/4.2.3'
ld: library not found for -lgfortran
clang: error: linker command failed with exit code 1 (use -v to see invocation)
make: *** [sourceCpp_76327.so] Error 1
...
Error in sourceCpp("rowSums.cpp") :
Error 1 occurred building shared library.
有任何想法吗?谢谢。