我只是想在我的 Mac 上启动并运行 Rcpp,但我正在苦苦挣扎。我已经安装了命令行工具。我已经安装了 Rcpp 和内联包。我尝试在 R 中运行以下脚本,并得到以下错误。
fx <- cxxfunction(signature( x = "numeric" ),
'NumericVector xx(x);
return wrap( std::accumulate( xx.begin(), xx.end(), 0.0));',
plugin = "Rcpp",verbose=TRUE)
Error in compileCode(f, code, language = language, verbose = verbose) :
Compilation ERROR, function(s)/method(s) not created! /bin/sh: llvm-g++-4.2: command not found
make: *** [file2e731b1c0ff8.o] Error 127
我意识到这与发布的问题非常相似。但我希望能提供有关在何处找到 makevars 文件的更多详细信息。
谢谢。