我在 Kubuntu 14.04 上运行 R3.1,并使用 Codeblocks 作为 IDE 来尝试来自 Dirk Eddelbuettels 的 RInside 程序,例如:
http://dirk.eddelbuettel.com/blog/2011/03/25/# rinside_and_qt`
// Copyright (C) 2010 Dirk Eddelbuettel and Romain Francois
//
// GPL'ed
#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);
}
`
我收到以下错误:
/usr/bin/ld: obj/Debug/main.o||未定义对符号'REprintf'的引用|
而且我不知道缺少什么库。有人知道吗?
谢谢