5

我正在测试 cblas ddot,我使用的代码来自链接,我将其修复为

#include <stdio.h>
#include <stdlib.h>
#include <cblas.h>

int main()
{
    double  m[10],n[10];
    int i;
    int result;

    printf("Enter the elements into first vector.\n");
    for(i=0;i<10;i++)
        scanf("%lf",&m[i]);

    printf("Enter the elements into second vector.\n");
    for(i=0;i<10;i++)
        scanf("%lf",&n[i]);

    result = cblas_ddot(10, m, 1, n, 1);
    printf("The result is %d\n",result);

    return 0;
}

然后当我编译它时,结果是:

/tmp/ccJIpqKH.o: In function `main':
test.c:(.text+0xbc): undefined reference to `cblas_ddot'
collect2: ld returned 1 exit status

我检查了 cblas 文件/usr/include/cblas.h,发现有

double cblas_ddot(const int N, const double *X, const int incX,
              const double *Y, const int incY);

我不知道哪里出了问题。为什么编译器说“cblas_ddot”是未定义的引用?

4

2 回答 2

5

你不能只包含头文件——它只会告诉编译器函数存在于某处。您需要告诉链接器链接到 cblas 库。

假设你有一个libcblas.a文件,你可以用-lcblas.

GNU 科学图书馆的网站告诉你如何做到这一点:

于 2013-10-22T02:07:27.220 回答
3

我的问题刚刚解决。原因是我输入链接路径时出错了。感谢Jonathon Reinhart的回答,他们在学习如何在 linux 中编码时非常有帮助。

编译命令是:

gcc -c test.c
gcc -L/usr/lib64 test.o -lgsl -lgslcblas -lm

其中“/usr/lib64”是正确的链接路径。

于 2013-10-23T01:17:39.387 回答