无法使用 clang 在 linux 上构建 cuda 7.0 示例

unable to build cuda 7.0 samples on linux with clang

我正在尝试使用 clang 在 linux (redhat 7) 上构建 cuda 示例版本 7.0。 Cuda 5.5、6.0、6.5 示例可以使用 clang 成功构建,但是当我尝试构建 7.0 示例时 - 出现以下错误:

/usr/local/cuda-7.0/bin/nvcc -ccbin /usr/local/bin/clang++ -I../../common/inc -m64 -gencode arch=compute_20,code=sm_20 -gencode arch=compute_30,code=sm_30 -gencode arch=compute_35,code=sm_35 -o simplePrintf.o -c simplePrintf.cu 
nvcc fatal : Host compiler targets unsupported OS. 
make: *** [simplePrintf.o] Error 1

我的 makefile 参数:

HOST_COMPILER=/usr/local/bin/clang++
TARGET_OS=linux
TARGET_ARCH=x86_64
HOST_ARCH=x86_64

如有任何帮助,我们将不胜感激。 谢谢

clang 不是 linux 支持的 CUDA 编译器。

您可以发现支持的配置here

如前所述,clang 不受支持。就我而言,将其更改为 usr/bin/g++ 就可以了。