Errors running SDK

Hi All,

I managed to get everything up with CUDA without errors until I got to testing out the examples

when I try to make it spits out these errors:

/usr/bin/ld: cannot find -lXi
collect2: ld returned 1 exit status
make[1]: *** […/…/bin/linux/release/imageDenoising] Error 1
make[1]: Leaving directory `/home/atk/NVIDIA_CUDA_SDK/projects/imageDenoising’
make: *** [projects/imageDenoising/Makefile.ph_build] Error 2

any ideas? Thanks all

this isn’t a CUDA-specific error–you just need to install the libXi development headers. on Ubuntu, I seem to recall it’s something like

sudo apt-get install libXi-dev

but I’m not sure what it would be on other platforms.