CUDA cuFFT体系结构x86_64的未定义符号

时间:2015-06-12 10:39:04

标签: c++ c macos cuda cufft

我尝试使用cuFFT库但是当我编译项目时出现错误:

Undefined symbols for architecture x86_64:
"_cufftDestroy" ...
"_cufftExecC2C" ...
"_cufftPlan1d" ...
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)

我在Mac OS X 10.10.3上使用CUDA 7和Eclipse Nsight。 没有cuFFT库的其他示例正常工作。还有其他设置吗?

1 个答案:

答案 0 :(得分:1)

我使用命令行解决了:

nvcc filename.cu -I/path_CUDA/include -L/path_CUDA/lib -lcufft

我当然认为Eclipse Nsight中有一个配置,但我仍然无法找到它。