sourceCpp即将推出iso标准

时间:2015-03-27 22:54:06

标签: r rcpp

我在Windows RStudio上使用Rcpp,我使用sourceCpp(filepath)编译Cpp代码。我需要编译一个人传给我的新代码,但是在我的电脑上它不起作用,因为它会导致以下错误:

"This file requires compiler and library support for the upcoming \
ISO C++ standard, C++0x. This support is currently experimental, and must be \
enabled with the -std=c++0x or -std=gnu++0x compiler options."

如何在工作站上安排? 我使用R x64 3.1.2最新版RcppRcppParallel以及Windows 7 x 64位

1 个答案:

答案 0 :(得分:1)

您需要通过例如一行

打开C ++ 11支持
 // [[Rcpp::plugins(cpp11)]]`

有关详细信息和一些Rcpp Attributes帖子示例,请参阅Rcpp Gallery小插图。