Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
运行 nvcc 时,它始终使用 Visual C++ 编译器 ( cl.exe)。我怎样才能让它使用 GCC 编译器?
cl.exe
将CC环境变量设置为gcc并没有解决它。我在可执行文件帮助输出中也找不到任何选项。
CC
gcc
在 Windows 上,NVCC 仅支持 Visual C++ 编译器 (cl.exe) 进行主机编译。
您当然可以使用 GCC 编译 .cpp(非 CUDA)代码并将对象与 nvcc 生成的对象链接。