来自 Rcpp 的 sourceCpp 在规范示例中给出了奇怪的编译错误

sourceCpp from Rcpp giving weird compilation error on canonical example

本文关键字:编译 错误 sourceCpp Rcpp 范示例 来自      更新时间:2023-10-16

我收到以下奇怪的错误:

> sourceCpp( "comp.Cpp" )
Warning message:
In sourceCpp("comp.Cpp") :
No Rcpp::export attributes or RCPP_MODULE declarations found in source

当我使用源Cpp时。 "公司。Cpp"文件如下所示:

#include <Rcpp.h>
using namespace Rcpp;
// [[Rcpp:export]]
RcppExport SEXP comp(int n){
    int i;
    Rcpp::NumericVector product(n);
    for(i=0;i<n;i++){
        product[i]=i;
    }
    return(product);
}

我尝试将我的操作系统更新到 Maverick(然后不得不重新安装 Xcode 命令行工具和其他一些东西),但此错误早于该错误。 我可以制作测试包并安装它并运行它提供的 hello world,因此 Rcpp 包大部分都可以工作。 我还在 R 中运行时收到另一个错误:

cppFunction( "
    int useCpp11() {
        auto x = 10;
        return x;
    }
", plugins=c("cpp11" ) )

这是

llvm-g++-4.2 -arch x86_64 -I/Library/Frameworks/R.framework/Resources/include     -I/usr/local/include  -I"/Library/Frameworks/R.framework/Versions/3.0/Resources/library/Rcpp/include"   -std=c++11  -fPIC  -mtune=core2  -O3    -c file69810a85a0d.cpp -o file69810a85a0d.o 
Error in sourceCpp(code = code, env = env, rebuild = rebuild, showOutput = showOutput,  : 
  Error 1 occurred building shared library.
cc1plus: error: unrecognized command line option "-std=c++11"
make: *** [file69810a85a0d.o] Error 1

我不知道这两件事是否相关。 我认为我的编译器不能很好地处理属性,但是在互联网上搜索并没有教育我足够的知识来理解这一点。

任何帮助将不胜感激。

将"[[Rcpp:export]]"更改为"[[Rcpp::export]]"。

#include <Rcpp.h>
using namespace Rcpp;
// [[Rcpp::export]]
SEXP comp(int n){
    int i;
    Rcpp::NumericVector product(n);
    for(i=0;i<n;i++){
        product[i]=i;
    }
    return(product);
}

您的编译器对于 C++11 标志来说太旧了。 错误消息对此非常清楚。

尝试-std=c++0x以及升级到 Xcode 5(它有自己的一组问题 - 但这些在这里有很好的记录)。