compile sample on debian 64

Hello,

I have problem to compile the SDK sample. I get this error :

make[1]: Entering directory `/home/user/NVIDIA_GPU_Computing_SDK/C/common'

make[1]: Leaving directory `/home/user/NVIDIA_GPU_Computing_SDK/C/common'

make[1]: Entering directory `/home/user/NVIDIA_GPU_Computing_SDK/C/common'

make[1]: Leaving directory `/home/user/NVIDIA_GPU_Computing_SDK/C/common'

make[1]: Entering directory `/home/user/NVIDIA_GPU_Computing_SDK/C/common'

make[1]: Leaving directory `/home/user/NVIDIA_GPU_Computing_SDK/C/common'

make[1]: Entering directory `/home/user/NVIDIA_GPU_Computing_SDK/shared'

make[1]: Leaving directory `/home/user/NVIDIA_GPU_Computing_SDK/shared'

make -C src/BlackScholes/

make[1]: Entering directory `/home/user/NVIDIA_GPU_Computing_SDK/C/src/BlackScholes'

make[1]: Leaving directory `/home/user/NVIDIA_GPU_Computing_SDK/C/src/BlackScholes'

make -C src/oceanFFT/

make[1]: Entering directory `/home/user/NVIDIA_GPU_Computing_SDK/C/src/oceanFFT'

make[1]: Leaving directory `/home/user/NVIDIA_GPU_Computing_SDK/C/src/oceanFFT'

make -C src/binomialOptions/

make[1]: Entering directory `/home/user/NVIDIA_GPU_Computing_SDK/C/src/binomialOptions'

make[1]: Leaving directory `/home/user/NVIDIA_GPU_Computing_SDK/C/src/binomialOptions'

make -C src/template/

make[1]: Entering directory `/home/user/NVIDIA_GPU_Computing_SDK/C/src/template'

make[1]: Leaving directory `/home/user/NVIDIA_GPU_Computing_SDK/C/src/template'

make -C src/MonteCarloMultiGPU/

make[1]: Entering directory `/home/user/NVIDIA_GPU_Computing_SDK/C/src/MonteCarloMultiGPU'

make[1]: Leaving directory `/home/user/NVIDIA_GPU_Computing_SDK/C/src/MonteCarloMultiGPU'

make -C src/simpleZeroCopy/

make[1]: Entering directory `/home/user/NVIDIA_GPU_Computing_SDK/C/src/simpleZeroCopy'

make[1]: Leaving directory `/home/user/NVIDIA_GPU_Computing_SDK/C/src/simpleZeroCopy'

make -C src/FDTD3d/

make[1]: Entering directory `/home/user/NVIDIA_GPU_Computing_SDK/C/src/FDTD3d'

make[1]: Leaving directory `/home/user/NVIDIA_GPU_Computing_SDK/C/src/FDTD3d'

make -C src/simplePitchLinearTexture/

make[1]: Entering directory `/home/user/NVIDIA_GPU_Computing_SDK/C/src/simplePitchLinearTexture'

make[1]: Leaving directory `/home/user/NVIDIA_GPU_Computing_SDK/C/src/simplePitchLinearTexture'

make -C src/alignedTypes/

make[1]: Entering directory `/home/user/NVIDIA_GPU_Computing_SDK/C/src/alignedTypes'

make[1]: Leaving directory `/home/user/NVIDIA_GPU_Computing_SDK/C/src/alignedTypes'

make -C src/recursiveGaussian/

make[1]: Entering directory `/home/user/NVIDIA_GPU_Computing_SDK/C/src/recursiveGaussian'

make[1]: Leaving directory `/home/user/NVIDIA_GPU_Computing_SDK/C/src/recursiveGaussian'

make -C src/simpleTexture/

make[1]: Entering directory `/home/user/NVIDIA_GPU_Computing_SDK/C/src/simpleTexture'

make[1]: Leaving directory `/home/user/NVIDIA_GPU_Computing_SDK/C/src/simpleTexture'

make -C src/simpleTextureDrv/

make[1]: Entering directory `/home/user/NVIDIA_GPU_Computing_SDK/C/src/simpleTextureDrv'

obj/x86_64/release/simpleTextureDrv.cpp.o: In function `initCUDA(int, char**, CUfunc_st**)':

simpleTextureDrv.cpp:(.text+0x644): undefined reference to `cuModuleLoadDataEx'

collect2: ld returned 1 exit status

make[1]: *** [../../bin/linux/release/simpleTextureDrv] Error 1

make[1]: Leaving directory `/home/user/NVIDIA_GPU_Computing_SDK/C/src/simpleTextureDrv'

make: *** [src/simpleTextureDrv/Makefile.ph_build] Error 2

Do someone has an idea of the problem ?

cheers

I have exactly the same problem on Ubuntu 10.10 64 machine! Anyone out there…???

I have exactly the same problem on Ubuntu 10.10 64 machine! Anyone out there…???

I do not know about Ubuntu (using Debian) but will try to help.

I can think about two possible causes of those problems

  1. You miss some packages.
    Install all available NVIDIA packages. Here is list from my system:
    libcuda1
    libcuda1-dev
    libgl1-nvidia-alternatives
    libgl1-nvidia-dev
    libgl1-nvidia-glx
    libglx-nvidia-alternatives
    libnvidia-compiler
    nvidia-glx
    nvidia-glx-dev
    nvidia-kernel-dkms
    nvidia-kernel-source
    nvidia-libopencl1
    nvidia-libopencl1-dev
    nvidia-opencl-common
    nvidia-opencl-icd
    nvidia-smi
    nvidia-vdpau-driver
    nvidia-xconfig

The mos important is libcuda1 and libcuda1-dev, libnvidia-compiler (used to compile PTX to CUBIN).

  1. Conflict between driver version and CUDA toolkit version.
    Drivers 195.x (available in Debian testing and unstable and Ubuntu) do not cooperate well with CUDA toolkit 3.1. To have working CUDA 3.1 you need drivers 256.53 (available in Debian experimental).

Please reply whether any of those help to solve your problems/

I do not know about Ubuntu (using Debian) but will try to help.

I can think about two possible causes of those problems

  1. You miss some packages.
    Install all available NVIDIA packages. Here is list from my system:
    libcuda1
    libcuda1-dev
    libgl1-nvidia-alternatives
    libgl1-nvidia-dev
    libgl1-nvidia-glx
    libglx-nvidia-alternatives
    libnvidia-compiler
    nvidia-glx
    nvidia-glx-dev
    nvidia-kernel-dkms
    nvidia-kernel-source
    nvidia-libopencl1
    nvidia-libopencl1-dev
    nvidia-opencl-common
    nvidia-opencl-icd
    nvidia-smi
    nvidia-vdpau-driver
    nvidia-xconfig

The mos important is libcuda1 and libcuda1-dev, libnvidia-compiler (used to compile PTX to CUBIN).

  1. Conflict between driver version and CUDA toolkit version.
    Drivers 195.x (available in Debian testing and unstable and Ubuntu) do not cooperate well with CUDA toolkit 3.1. To have working CUDA 3.1 you need drivers 256.53 (available in Debian experimental).

Please reply whether any of those help to solve your problems/