Skip to content
Prev 27100 / 63458 Next

Problem with dyn.load'ed code

You are missing some extern "C" declarations? R needs C linkage style.
Basically a lot of:

extern "C" {

}

around your c++ code.
Matt Calder wrote: