犰狳"ReferenceInputParameter is not a template"

RcppArmadillo "ReferenceInputParameter is not a template"

本文关键字:template not is ReferenceInputParameter 犰狳      更新时间:2023-10-16

我正在尝试构建一个用户包,该软件包在安装了R 2.15.1的同事的Windows框上构建良好。 我的配置是:

R 2.15.3, RTools 3.0, Rcpp 0.10.4, Rcpp犰狳 0.3.920.1, RStudio 0.97.551

这是我运行"R CMD INSTALL mypackage"时的第一个编译实例。 indfunForecast.cpp 是包中的源文件之一。

>g++ -m32 -I"D:/PROGRA~1/R/R-215~1.3/include" -DNDEBUG
-I"D:/R/win-library/2.15/Rcpp/include" -I"D:/R/win-library/2.15/RcppArmadillo/include" 
-I"d:/RCompile/CRANpkg/extralibs64/local/include" 
-O2 -Wall -mtune=core2 
-c indfunForecast.cpp -o indfunForecast.o

以下错误消息如下:

In file included from D:/R/win-library/2.15/RcppArmadillo/include/RcppArmadillo.h:30:0,
             from indfunForecast.cpp:16:
D:/R/win-library/2.15/RcppArmadillo/include/RcppArmadilloForward.h:99:33: 
error: 'ConstReferenceInputParameter' is not a template
D:/R/win-library/2.15/RcppArmadillo/include/RcppArmadilloForward.h:100:33: 
error: 'ReferenceInputParameter' is not a template
D:/R/win-library/2.15/RcppArmadillo/include/RcppArmadilloForward.h:101:33: 
error: 'ConstInputParameter' is not a template

知道发生了什么吗???

感谢您的帮助。萨奇科

你有最新的Rcpp犰狳,它需要最新的Rcpp,而你没有(我不会让你厌烦细节,但它与CRAN有关)。

从源代码安装 Rcpp 0.10.5,事情应该可以正常工作。