Default host compiler used by nvcc for linux

后端 未结 2 672
走了就别回头了
走了就别回头了 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:11

    AFAIK it uses g++ (to be more precise it uses gcc with language set to c++) and of course g++ for final linking. Run nvcc with --verbose option to see more detail if you want.

提交回复
热议问题