cutil.lib

Hi all,

I am new to CUDA. I get the below error, trying to run a simple example. Can anyone help?

LINK : fatal error LNK1181 : cannot open include file ‘cutil.lib’

Thanks

Path to directories with CUDA libraries should be defined in “Additional library directories” in project settings in case you use MS VS.
(D:\CUDA\lib\ , D:\CUDA\SDK\common\lib\ ) in my case.
In order to make your VS project portable from one PC to another you can define
environment variables:
SET CUDA_LIB_PATH=D:\CUDA\lib
SET NVSDKCUDA_ROOT=D:\CUDA\SDK

then you add $(CUDA_LIB_PATH), $(NVSDKCUDA_ROOT)\common\lib to “Additional library directories”

I installed cuda on fedora 9 machine.I got an error saying, -lcutil is not found. How can I fix this in Linux environment. (I have setup the LD_LIBRARY_PATH according to the documentation )