cutil not found error

I installed cuda on Fedora 9 machine with default settings. the I try to compile a given sample project using ‘make’ but following error ocurs

[root@cuda matrixMul]# make
/usr/bin/ld: cannot find -lcutil
collect2: ld returned 1 exit status
make: *** […/…/bin/linux/release/matrixMul] Error 1

Anyone have an idea about this ?

When installing the toolkit, at the end there are instructions on how to modify your LD_LIBRARY_PATH. If you follow them this error will not happen.

I set my LD_LIBRARY_PATH path as follows

export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/cuda/lib

because I have chose the default installation path.I read installtion instruction on release notes but there were not important thing regarding this issue.
So I would be very thankful if you can show me the place I should refer to

Cheers

cutil isn’t part of CUDA, it’s part of the SDK. if you’re building SDK apps, run make from the NVIDIA_CUDA_SDK directory.

Hi, I am also receiving the same error when using the make command to compile the SDK’s. Please help with this issue. I have included an output of my error code. System is:ubuntu 8.10 64bit ,gcc (Ubuntu 4.3.2-1ubuntu12) 4.3.2. Thanks

~/NVIDIA_CUA_SDK/projects/nbody$ echo $LD_LIBRARY_PATH
:/home/pdw113/cuda/lib
~/NVIDIA_CUA_SDK/projects/nbody$ make
In file included from bodysystemcpu.cpp:37:
./cutil_inline.h:8:18: error: cuda.h: No such file or directory
./cutil_inline.h:10:19: error: cufft.h: No such file or directory
./cutil_inline.h:11:30: error: cuda_runtime_api.h: No such file or directory
In file included from bodysystemcpu.cpp:37:
./cutil_inline.h: In function ‘int cutGetMaxGflopsDeviceId()’:
./cutil_inline.h:75: error: ‘cudaGetDeviceCount’ was not declared in this scope
./cutil_inline.h:77: error: ‘cudaDeviceProp’ was not declared in this scope
./cutil_inline.h:77: error: expected `;’ before ‘device_properties’
./cutil_inline.h:82: error: ‘device_properties’ was not declared in this scope
./cutil_inline.h:82: error: ‘cudaGetDeviceProperties’ was not declared in this scope
./cutil_inline.h: At global scope:
./cutil_inline.h:102: error: variable or field ‘__cuSafeCallNoSync’ declared void
./cutil_inline.h:102: error: ‘CUresult’ was not declared in this scope
./cutil_inline.h:102: error: expected primary-expression before ‘const’
./cutil_inline.h:102: error: expected primary-expression before ‘const’
In file included from /usr/include/c++/4.3/new:45,
from /usr/include/c++/4.3/bits/stl_construct.h:65,
from /usr/include/c++/4.3/bits/stl_tempbuf.h:66,
from /usr/include/c++/4.3/bits/stl_algo.h:68,
from /usr/include/c++/4.3/algorithm:67,
from bodysystemcpu.cpp:38:
/usr/include/c++/4.3/exception:40: error: expected declaration before end of line
make: *** [obj/release/bodysystemcpu.cpp.o] Error 1