Browse Source

Fix to build with nvcc in path (crux)

master
Tanguy Pruvot 10 years ago
parent
commit
f761531436
  1. 5
      configure.ac

5
configure.ac

@ -147,17 +147,20 @@ AC_ARG_WITH([nvml],
AM_CONDITIONAL([HAVE_NVML], [test -n "$with_nvml"]) AM_CONDITIONAL([HAVE_NVML], [test -n "$with_nvml"])
NVCC="nvcc"
if test -n "$with_cuda" if test -n "$with_cuda"
then then
CUDA_INCLUDES="-I$with_cuda/include" CUDA_INCLUDES="-I$with_cuda/include"
CUDA_LIBS="-lcudart" CUDA_LIBS="-lcudart"
CUDA_LDFLAGS="-L$with_cuda/lib$SUFFIX" CUDA_LDFLAGS="-L$with_cuda/lib$SUFFIX"
if test -x "$with_cuda/bin/nvcc"
NVCC="$with_cuda/bin/nvcc" NVCC="$with_cuda/bin/nvcc"
fi
else else
CUDA_INCLUDES="-I/usr/local/cuda/include" CUDA_INCLUDES="-I/usr/local/cuda/include"
CUDA_LIBS="-lcudart -static-libstdc++" CUDA_LIBS="-lcudart -static-libstdc++"
CUDA_LDFLAGS="-L/usr/local/cuda/lib$SUFFIX" CUDA_LDFLAGS="-L/usr/local/cuda/lib$SUFFIX"
NVCC="nvcc"
fi fi
if test -n "$with_nvml" ; then if test -n "$with_nvml" ; then

Loading…
Cancel
Save