Re: [Rcpp-devel] Building shared libs with Rcpp does not work as before after Debian update ( function 'dataptr' not provided by package 'Rcpp' )

2014-03-19 Thread Andreas Recke
Hi, I found the problem. The solution is as always: simple and stupid, and difficult to find. When using my shared library, I used to do this: dyn.load(test.so) .Call(test, x_ = 2, y_ = 3) And got the error: function 'dataptr' not provided by package 'Rcpp' I did not load the Rcpp library for

Re: [Rcpp-devel] Building shared libs with Rcpp does not work as before after Debian update ( function 'dataptr' not provided by package 'Rcpp' )

2014-03-19 Thread Dirk Eddelbuettel
On 19 March 2014 at 13:32, Andreas Recke wrote: | I found the problem. Very good :) And thanks for reporting back here. | The solution is as always: simple and stupid, and difficult to find. | When using my shared library, I used to do this: | dyn.load(test.so) | .Call(test, x_ = 2, y_ = 3) |