创建R实例时,RInside崩溃

时间:2015-07-19 01:37:13

标签: qt rinside

我尝试了两个例子,他们给了我同样的问题。

int main(int argc, char *argv[])
{
    qDebug() << "//------- before R instance";
    RInside R(argc, argv);          // create an embedded R instance
    qDebug() << "//------- after R instance";

应用程序输出:

Starting C:\Users\Alfonso\Desktop\Alf-15\RInside\inst\examples\build-qtdensity-Desktop_Qt_5_4_1_MinGW_32bit-Release\release\qtdensity.exe...
//------- before R instance
The program has unexpectedly finished.
C:\Users\Alfonso\Desktop\Alf-15\RInside\inst\examples\build-qtdensity-Desktop_Qt_5_4_1_MinGW_32bit-Release\release\qtdensity.exe crashed

有什么想法吗? (我在Windows 7上工作,我有Qt 5.4.1 MinGW 32bit,R 3.1.3和RInside 0.2.13) 感谢。

1 个答案:

答案 0 :(得分:0)

确保Qt和R使用相同(或兼容)的MinGW版本构建。如果您在the rcpp-devel list上发帖,其他一些Windows用户可能会帮助您。

example Qt application included in RInside仍有效,并且不仅如此。