Search code examples
cudanvidia

Error compiling CUDA from Command Prompt


I'm trying to compile a cuda test program on Windows 7 via Command Prompt, I'm this command:

nvcc test.cu

But all I get is this error:

nvcc fatal : Cannot find compiler 'cl.exe' in PATH

What may be causing this error?


Solution

  • You will need to add the folder containing the "cl.exe" file to your path environment variable. For example:

    C:\Program Files\Microsoft Visual Studio 10.0\VC\bin
    

    Edit: Ok, go to My Computer -> Properties -> Advanced System Settings -> Environment Variables. Here look for "PATH" in the list, and add the path above (or whatever is the location of your cl.exe).