Description
When I try to update Rcpp from 1.0.7 to 1.0.8 from source, I get the following errors:
install.packages("Rcpp")
clang++ -I"/Library/Frameworks/R.framework/Resources/include" -DNDEBUG -I../inst/include/ -I/usr/local/include -fPIC -Wall -g -O2 -c api.cpp -o api.o
clang++ -I"/Library/Frameworks/R.framework/Resources/include" -DNDEBUG -I../inst/include/ -I/usr/local/include -fPIC -Wall -g -O2 -c attributes.cpp -o attributes.o
attributes.cpp:2813:45: error: a space is required between consecutive right angle brackets (use '> >')
Rcpp::as<std::vectorstd::string>(pargs_cv);
^~
> >
1 error generated.
make: *** [attributes.o] Error 1
Output of my sessionInfo():
R version 4.0.2 (2020-06-22)
Platform: x86_64-apple-darwin17.0 (64-bit)
Running under: macOS Catalina 10.15.7
Matrix products: default
BLAS: /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
LAPACK: /Library/Frameworks/R.framework/Versions/4.0/Resources/lib/libRlapack.dylib
locale:
[1] en_US.UTF-8/en_US.UTF-8/en_US.UTF-8/C/en_US.UTF-8/en_US.UTF-8
attached base packages:
[1] stats graphics grDevices utils datasets methods base
loaded via a namespace (and not attached):
[1] MASS_7.3-51.6 compiler_4.0.2 Matrix_1.2-18 tools_4.0.2 parallel_4.0.2 OpenMx_2.18.1 Rcpp_1.0.7 grid_4.0.2
[9] digest_0.6.27 packrat_0.5.0 lifecycle_1.0.0 rlang_0.4.11 lattice_0.20-41
Thank you in advance!