Hello,
This is a message to let you know that as far as I’ve tested, the devel version of Rcpp11 works on windows (with the current version of Rtools).
The compiler that is shipped with the current Rtools is gcc 4.6.3 with partial support for C++11. This page details the subset of C++11 that is supported:
http://gcc.gnu.org/gcc-4.6/cxx0x_status.html
It is not ideal, as I had to compromise a few features I liked (delegated constructors and template aliases, i.e. the using keyword instead of typedef), but at least we have something we can use.
If there are windows users here, can you please test Rcpp11. Something like this should run the tests:
source_gist( "
https://gist.github.com/romainfrancois/10721547" )
and end with something like:
Conversion from SEXP to C++ type with as<> : ....................................
data frame manipulation with Rcpp::DataFrame : ..............
environments : ..............................................................
functions : .........
Language : ..............
Pairlist : ....................
Formula : ......
Matrix : ............1........
Rcpp API : .........................................
NA : ..............
R math : ......................................................................................................
RObject : ........................................................................................
String : .........
sugar : ...............................................
sugar matrix : ...
sugar : ...........................
Vector : .......................................................
wrap : ................
External pointers : ..
1. Failure(@test-Matrix.R#62): Matrix columns work -----------------------------
runit_NumericMatrix_cumsum(x) not equal to t(apply(x, 1, cumsum))
Mean relative difference: 9.083672e+222
(the failure is something we can reproduce everywhere, we’ll fix this shortly).
I will do some more testing and then negotiate if I can release again so that windows users get a Rcpp11 that works.
Romain