Reputation: 11
I'm looking for a library in c++ which I compile with the Borland compiler bcc32. Before I tried to take the benefits of RInside but unfortunately it's only working with gcc-compiler and can't be used in my programming environment, which is Embarcadero.
I hope you can help me. Thanks.
Upvotes: 0
Views: 254
Reputation: 226771
Part 1: no. From the Rcpp FAQ:
1.3. What compiler can I use. On almost all platforms, the GNU Compiler Collection (or gcc, which is also the name of its C language compiler) has to be used along with the corresponding g++ compiler for the C++ language. ... The clang and clang++ compilers from the LLVM project can also be used ... The Intel icc family has also been used successfully as its output files can also be combined with those from gcc .
If it's not on that list, it's not supported.
Part 2: off topic for StackOverflow.
Upvotes: 1