在尝试编译我的 C++ 程序时,我正在链接我的 R 文件,但 Rcpp 没有 libRcpp.so 文件。
这是 R 代码(我省略了 C++):
#include <R.h>
#include <Rcpp.h>
#include <RInside.h>
**** some c++ code*****
RInside R(argc, argv);
string cmd = "tmpf <- tempfile('nums');"
"png(tmpf);"
"counts <- table(a,b,c,d,e);"
"barplot(counts, main='My Plot', xlab='Letters');"
"dev.off();"
"tmpf";
string tmpfile = R.parseEval(cmd);
cout << "Using plot " << tmpfile << endl;
unlink(tmpfile.c_str());
然后我用 g++ 编译,如:
g++ -I/home/robert/R/x86_64-pc-linux-gnu-library/3.2/Rcpp/include
-I/home/robert/R/x86_64-pc-linux-gnu-library/3.2/RInside/include
-I/usr/share/R/include -L/usr/lib/R/lib -lR
-L/home/robert/R/x86_64-pc-linux-gnu-library/3.2/Rcpp/libs -lRcpp
-L/home/robert/R/x86_64-pc-linux-gnu-library/3.2/RInside/lib -lRInside
Frequency-Analyzer.cpp
错误内容如下:
/usr/bin/ld: cannot find -lRcpp
collect2: error: ld returned 1 exit status
这是因为
-L/home/robert/R/x86_64-pc-linux-gnu-library/3.2/Rcpp/libs
不会导致
"libRcpp.so"
文件。但是,我的目录中没有 lib 文件,因为它不再支持链接。那我怎么可能用 RInside 编译呢?