我在使用CentOS上的黄金链接器链接英特尔MKL和libdl时遇到问题:
当我运行此脚本时:
#!/bin/bash
MKL_INC=$MKL_INSTALL_DIR/include
MKL_LIB=$MKL_INSTALL_DIR/lib
. /opt/rh/devtoolset-6/enable
cat > t.c << end_mkltest
#include <dlfcn.h>
#include "mkl_service.h"
int main() {
dlerror(); /* use libdl */
mkl_set_num_threads(1); /* use mkl */
}
end_mkltest
gcc -I$MKL_INC -c t.c -o t.o
gcc -L$MKL_LIB -fuse-ld=gold t.o -lmkl_rt -ldl
我明白了:
libmkl_rt.so: error: undefined reference to 'calloc'
libmkl_rt.so: error: undefined reference to 'realloc'
libmkl_rt.so: error: undefined reference to 'malloc'
libmkl_rt.so: error: undefined reference to 'free'
我们正在使用:
CentOS 7.3
devtoolset-6
mkl-2017.2.174.tar.bz2
有什么想法吗?
答案 0 :(得分:0)
这应该有效。你可以发布这个命令显示的链接器命令吗?
gcc -v -L$MKL_LIB -fuse-ld=gold t.o -lmkl_rt -ldl
(抱歉,由于缺乏声誉,不能将此作为评论发布。)