Skip to content
Prev 4234 / 10988 Next

[Rcpp-devel] Advice on installing CHOLMOD/Suitesparse

On 08/30/2012 05:53 PM, Douglas Bates wrote:

            
Correct!
I can't blame anyone else.  That's part of our standard setup which
was working beautifully until 2 days ago.  But, I will re-think it.
When the next release of R appears, #1 is probably what I should look
into since it is probably self-inflicted and, otherwise, may lead to
other unusual bug reports in the future.  For a quick and dirty fix,
I tweaked my original hack (after playing around with the
cpp flag -I- and giving up in frustration).  Replace line 9 of
PREFIX/include/Eigen/CholmodSupport with

#ifdef RcppEigen__RcppEigen__h
#include <RcppEigenCholmod.h>
#else
#include <suitesparse/cholmod.h>
#endif

Thanks for all of your help!