what library is cutilD?

i can build a project in release or emurelease mode by typing “make(emu=1)” in the project’s directory, but there come out a error when i try to build in debug or emudebug mode by typing “make dbg=1 (emu=1)” in the same directory. it seem that a library naming libcutilD.so is absent, but i have no idea about this library, hope someone who knows something about it give me a tip…

here is the error info:
/usr/bin/ld: cannot find -lcutilD
collect2: ld returned 1 exit status
make: *** […/…/bin/linux/debug/apriori_in_cuda] Error 1

thanks in advance

Gimurk

cutilD is the debug version of the cutil library. You need to rebuild if from source using the make dbg=1 , it is under the common subdirectory in the SDK directory.

i see, thanks.