Skip to content
Prev 866 / 10988 Next

[Rcpp-devel] Some suggestions

Le 11/07/10 17:51, Dominick Samperi a ?crit :
As I said, check the runit.client.package.R test that does exactly this: 
checking that a client package works.

We do test that documented ways to include Rcpp headers and link against 
the user libraries work.

While on the subject, the current best way to pull header files in is to 
use LinkingTo: Rcpp and not:

PKG_CPPFLAGS = $(shell $(R_HOME)/bin/Rscript --vanilla -e 
"Rcpp:::CxxFlags()")

which is what several packages are still using, including cxxPack.

This at least makes one less use of $shell/Rscript, which apparently is 
the bad guy.
Sure.