Re: [Rcpp-devel] Difficulty Compiling RcppClassic Package on Windows

2011-06-10 Thread Tim Jurka
Hi Dirk, Re-writing the wrapper using the new API resolved the issues; it installs perfectly on Windows now. Thank you for your help! Best, Tim On Jun 10, 2011, at 10:20 PM, Dirk Eddelbuettel wrote: > > Hi Tim, > > On 10 June 2011 at 21:31, Tim Jurka wrote: > | Hello Rcpp-Devel, > | > | Thi

Re: [Rcpp-devel] Difficulty Compiling RcppClassic Package on Windows

2011-06-10 Thread Dirk Eddelbuettel
Hi Tim, On 10 June 2011 at 21:31, Tim Jurka wrote: | Hello Rcpp-Devel, | | This is my first question posted to this list, so please remind me if I'm missing crucial details in my inquiry! | | I have successfully interfaced Yoshimasa Tsuruoka's excellent C++ maximum | entropy library ( http://w

[Rcpp-devel] Difficulty Compiling RcppClassic Package on Windows

2011-06-10 Thread Tim Jurka
Hello Rcpp-Devel, This is my first question posted to this list, so please remind me if I'm missing crucial details in my inquiry! I have successfully interfaced Yoshimasa Tsuruoka's excellent C++ maximum entropy library ( http://www-tsujii.is.s.u-tokyo.ac.jp/~tsuruoka/maxent/ ) using RcppClas

Re: [Rcpp-devel] Using Rcpp in C++

2011-06-10 Thread Dirk Eddelbuettel
On 10 June 2011 at 15:06, [email protected] wrote: | Hello I want to experiment a little with Rcpp, however, as a newby I don't get it to work, e.g.: | | #include | #include | int main() | { | using namespace Rcpp; | RNGScope scope; | std::cout << runif( 1, 0, 1) << std::endl; |

[Rcpp-devel] Using Rcpp in C++

2011-06-10 Thread soeren . vogel
Hello I want to experiment a little with Rcpp, however, as a newby I don't get it to work, e.g.: #include #include int main() { using namespace Rcpp; RNGScope scope; std::cout << runif( 1, 0, 1) << std::endl; return 0; } How can I get it to work? Thanks, Sören