Default host compiler used by nvcc for linux

后端 未结 2 659
走了就别回头了
走了就别回头了 2020-12-30 17:34

I am using CUDA 4.0 on Ubuntu 10.10 with GTX 570 (compute capcability 2.0), with the GCC compiler suite. As I understand it, during compilation the CUDA compiler driver nvc

2条回答
  •  遥遥无期
    2020-12-30 18:02

    You want the -ccbin option for nvcc, e.g. to use icpc (the Intel C++ compiler), use nvcc -ccbin=icpc (assuming the icpc is available in your $PATH).

    Note that you should always pass a C++ compiler (g++, icpc, etc.), since nvcc treats the code as C++, even when it's C code.

提交回复
热议问题