f******y 发帖数: 2971 | 1 【 以下文字转载自 Statistics 讨论区 】
发信人: finalguy (o(∩∩)o), 信区: Statistics
标 题: Problem with R loading C libraries
发信站: BBS 未名空间站 (Tue Nov 29 14:10:46 2011, 美东)
I got problem when trying to load gsl library:
dyn.load("/usr/local/lib/libgsl.so")
Error in dyn.load("/usr/local/lib/libgsl.so") :
unable to load shared object '/usr/local/lib/libgsl.so':
/usr/local/lib/libgsl.so: undefined symbol: cblas_ctrmv
I know what the msg means, but how to fix it? | d**o 发帖数: 864 | 2 You need to load cblas libary as wel, I guess.
cblas_ctrmv sould be in libcblas.so
【在 f******y 的大作中提到】 : 【 以下文字转载自 Statistics 讨论区 】 : 发信人: finalguy (o(∩∩)o), 信区: Statistics : 标 题: Problem with R loading C libraries : 发信站: BBS 未名空间站 (Tue Nov 29 14:10:46 2011, 美东) : I got problem when trying to load gsl library: : dyn.load("/usr/local/lib/libgsl.so") : Error in dyn.load("/usr/local/lib/libgsl.so") : : unable to load shared object '/usr/local/lib/libgsl.so': : /usr/local/lib/libgsl.so: undefined symbol: cblas_ctrmv : I know what the msg means, but how to fix it?
| f******y 发帖数: 2971 | 3 Yes, but I guess R does not allow loading .so libs separately.
【在 d**o 的大作中提到】 : You need to load cblas libary as wel, I guess. : cblas_ctrmv sould be in libcblas.so
|
|