1

我正在尝试使用 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 库的其他示例可以正常工作。还有其他设置吗?

4

1 回答 1

2

我使用命令行解决了:

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

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

于 2015-06-12T14:24:35.227 回答