0

我正在尝试编译一个以前在其他平台上工作过的 CUDA 程序,但现在出现以下错误:

In file included from /usr/local/cuda-5.0/bin/crt/link.stub:79:0:
/tmp/tmpxft_00006ff5_00000000-1_align_dlink.reg.c:2:1: error: redefinition of 'const unsigned char def_module_id_str__NV_MODULE_ID []'
/tmp/tmpxft_00006ff5_00000000-1_align_dlink.reg.c:1:1: error: 'const unsigned char def_module_id_str__NV_MODULE_ID [19]' previously defined here
/tmp/tmpxft_00006ff5_00000000-1_align_dlink.reg.c: In function 'void __cudaRegisterLinkedBinary__NV_MODULE_ID(void (*)(void**), void*, void*)':

等等一些变量。

我有:

$ nvcc -V
nvcc: NVIDIA (R) Cuda compiler driver
Copyright (c) 2005-2012 NVIDIA Corporation
Built on Fri_Sep_21_17:28:58_PDT_2012
Cuda compilation tools, release 5.0, V0.2.1221

gcc 版本 4.6.3、Tesla M2090 和 64 位 Ubuntu 12.04。

我已经成功构建并运行了 CUDA 示例,因此我认为我的环境设置正确。

4

1 回答 1

0

nvcc 版本 5 中的链接器的工作方式与版本 4 不同。我的 make 文件中的编译过程与版本 5 不兼容。我安装了 CUDA 版本 4 并且一切正常。

于 2012-12-13T08:06:07.450 回答