Ошибка при запуске примера RInside в Eclipse - PullRequest
0 голосов
/ 02 июля 2019

Приветствие,

Я пытаюсь запустить примеры RInside в Eclipse, но у меня есть эта ошибка

./rinside_sample0.o: In function `main':
D:\omnetpp-5.1\samples3\myRapp\Debug/../rinside_sample0.cpp:16: undefined reference to `RInside::operator[](std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)'
D:\omnetpp-5.1\samples3\myRapp\Debug/../rinside_sample0.cpp:18: undefined reference to `RInside::parseEvalQ(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)'
collect2.exe: error: ld returned 1 exit status
make: *** [makefile:46: myRapp.exe] Error 1

Вот код для rinside_sample0:

#include <RInside.h>                    // for the embedded R via RInside

int main(int argc, char *argv[]) {

    RInside R(argc, argv);              // create an embedded R instance

    R["txt"] = "Hello, world!\n";   // assign a char* (string) to 'txt'

    R.parseEvalQ("cat(txt)");           // eval the init string, ignoring any returns

    exit(0);
}

Я добавил следующую конфигурацию в Eclipse: enter image description here enter image description here

Любая помощь, чтобы выяснить, как решить эту проблему, будет очень признательна

...