Skip to content
Prev 7525 / 10988 Next

[Rcpp-devel] Rcpp module errors with Rcpp binary installation

Hi Azad,

Your first issue is something separate, probably due to clashing
compiler toolchains between compiled versions of R / packages. If you
want to dive into that further you'll need to give us some more
information about your compiler setup.

The second issue, with flowMatch, I believe this is because there is a
clash between Rcpp::function (used for modules) and clang's
std::function. You're probably running into this because you have
'using namespace std;' (which is bad practice btw -- please use
typedefs for items in std:: you need, or qualify with std::
explicitly).

You might be able to work around it by qualifying with Rcpp::function
explicitly.

Cheers,
Kevin
On Thu, May 1, 2014 at 3:55 PM, Ariful Azad <azadcse at gmail.com> wrote: