File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed
Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change 1+ 2019-12-05 Dirk Eddelbuettel <
[email protected] >
2+
3+ * vignettes/rmd/Rcpp-FAQ.Rmd (Rcpp): Add entry about "'dataptr' (or
4+ 'enterRNGScope') not provided by Rcpp" recommending proper importFrom
5+
162019-12-03 Dirk Eddelbuettel <
[email protected] >
27
38 * docker/ci/Dockerfile: Lighter builds as fewer Suggests:
Original file line number Diff line number Diff line change @@ -1754,3 +1754,10 @@ Rcpp Modules \citep{CRAN:Rcpp:Modules}. Some more background on the linking
17541754requirement is [ in this SO
17551755question] ( https://stackoverflow.com/questions/2424836/exceptions-are-not-caught-in-gcc-program ) .
17561756
1757+ ## My package fails with 'dataptr' (or 'enterRNGScope') not provided by Rcpp
1758+
1759+ For your package, it is generally recommended to have both ` Imports: ` and
1760+ ` LinkingTo: ` in the file ` DESCRIPTION ` combined with an explicit
1761+ ` importFrom("Rcpp", "evalCpp") ` in the file ` NAMESPACE ` . Doing so ensures
1762+ that certain symbols are registered when your package is loaded by R, and
1763+ that certain Rcpp functions are properly resolved.
You can’t perform that action at this time.
0 commit comments