gpt4 book ai didi

c - 将 CUDA 静态或共享库与 gcc 链接时出现 undefined reference 错误

转载 作者:太空狗 更新时间:2023-10-29 17:24:25 24 4
gpt4 key购买 nike

gcc 和 CUDA 问题

你好,

我已经编译了一个 CUDA 共享库,但无法将它与使用它的主程序链接起来。我正在用 gcc 编译主程序。

代码:

simplemain.c

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



void fcudadriver();

int main()
{
printf("Main \n");
fcudadriver();
return 0;
}

测试.cu

    __global__ void fcuda()
{
}

void fcudadriver()
{
fcuda<<<1,1>>>();
}

我将 test.cu 编译为 --> 它有效

    nvcc --compiler-options '-fPIC' -o libtest.so --shared test.cu

我将 simplemain.c 编译为 ---> 它给出错误 :(

    gcc simplemain.c -L. -ltest
/tmp/ccHnB4Vh.o:simplemain.c:function main: error: undefined reference to 'fcudadriver'
collect2: ld returned 1 exit status

最佳答案

尝试使用 g++ 而不是 gcc。 nvcc 使用 c++ 风格的链接约定。 (您不需要重命名任何文件。)

或者,如果您必须使用 gcc,请像这样在 void fcudadriver() 函数定义前添加:

extern "C" void fcudadriver()

关于c - 将 CUDA 静态或共享库与 gcc 链接时出现 undefined reference 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14421898/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com