CUDA 6.0链接错误:对`__cudaUnregisterFatBinary'的引用未定义。

6

我正在尝试在Eclipse中编译一个简单的CUDA程序。

g++ -L/opt/cuda/lib64 -o "cuda_esn" ./cu_cuda_test.o ./main.o -lcuda -lstdc++

正如您所看到的,我在链接-lcuda并设置库路径-L/opt/cuda/lib64。但不幸的是,我不知道为什么它无法编译。

完整输出:

18:36:35 **** Incremental Build of configuration Default for project cuda_esn ****
make all 
Building file: ../cuda_test.cu
Invoking: CUDA NVCC Compiler
nvcc -c  -o "cu_cuda_test.o" "../cuda_test.cu" && \
echo -n 'cu_cuda_test.d' ./ > 'cu_cuda_test.d' && \
nvcc -M   "../cuda_test.cu" >> 'cu_cuda_test.d'
nvcc warning : The 'compute_10' and 'sm_10' architectures are deprecated, and may be removed in a future release.
nvcc warning : The 'compute_10' and 'sm_10' architectures are deprecated, and may be removed in a future release.
Finished building: ../cuda_test.cu

Building target: cuda_esn
Invoking: C++ Linker
g++ -L/opt/cuda/lib64 -o "cuda_esn"  ./cu_cuda_test.o ./main.o   -lcuda -lstdc++
./cu_cuda_test.o: In function `__cudaUnregisterBinaryUtil()':
makefile:32: recipe for target 'cuda_esn' failed
tmpxft_00001041_00000000-3_cuda_test.cudafe1.cpp:(.text+0x49): undefined reference to `__cudaUnregisterFatBinary'
./cu_cuda_test.o: In function `__nv_init_managed_rt_with_module(void**)':
tmpxft_00001041_00000000-3_cuda_test.cudafe1.cpp:(.text+0x63): undefined reference to `__cudaInitModule'
./cu_cuda_test.o: In function `__sti____cudaRegisterAll_44_tmpxft_00001041_00000000_6_cuda_test_cpp1_ii_aeee46d9()':
tmpxft_00001041_00000000-3_cuda_test.cudafe1.cpp:(.text+0x9c): undefined reference to `__cudaRegisterFatBinary'
collect2: error: ld returned 1 exit status
make: *** [cuda_esn] Error 1

这是源代码(目前还不是很有趣):
cuda_test.h
#ifndef CUDARR
#define CUDARR

#ifdef __cplusplus
  extern "C"
#endif

void foo_wrapper();

#endif

cuda_test.cu

#include "cuda_test.h"
#include "cuda.h"
#include "cuda_runtime.h"

extern "C" void foo_wrapper()
{
}

Main.cpp

#include <iostream>
#include "cuda_test.h"

int main() {

  std::cout << "hello world" << std::endl;

  foo_wrapper();

  return 0;
}

有人能帮助我吗?

1个回答

12

你还需要链接到cudart,也就是cuda运行库。请添加-lcudart


我感觉很蠢。我已经做过这个了,但每次都只链接了cudacudart中的一个,从来没有同时链接两个 O_o .. 谢谢,现在它可以工作了(必须等待四分钟才能接受答案)。 - Stefan Falk
5
如果每次我问一个显而易见的问题都能得到一美元,我就能买下比尔·盖茨了。 - Anycorn
我知道那种感觉。没人为此付给我报酬 :D - Stefan Falk

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接