0

我使用了以下手册并为 rcpp 设置了 eclipse。

http://blog.fellstat.com/?p=170

我可以为 R 构建包,但是当我想调试它时出现以下错误:

Error in dyn.load(file, DLLpath = DLLpath, ...) : 
unable to load shared object '/usr/lib/R/library/stats/libs/stats.so':
libRlapack.so: cannot open shared object file: No such file or directory
During startup - Warning message:
package ‘stats’ in options("defaultPackages") was not found 
Error: could not find function "errorOccured"
Execution halted

我在ubuntu中使用eclipse。

谢谢

4

1 回答 1

0

我没有检查 Cross G++ Linker>Shared Library Settings 中的 Shared 选项。之后 -fPic 必须启用(其他标志)。

问题是我可以毫无错误地构建它,但我仍然无法在 Eclipse 中运行它!它创建 libMyCppPackage 并希望运行 MyCppPackage!

  The program file specified in the launch configuration does not exist
  /media/EXt4ENC/Rcpp/MyCppPackage/Debug/MyCppPackage not found

abd 此链接无济于事: http ://hyperspec.wordpress.com/2012/05/07/ides/

于 2012-12-17T07:21:57.363 回答