How to run CUDA application with no SDK on Linux

Hello.
I’ve compiled and run CUDA ‘Hello world’ app on OpenSuse 11.3. After that I tried to run it on another OpenSuse Linux with NVIDIA drivers and no SDK but it didn’t run.
Is there any way to run CUDA apps with no SDK installed? Maybe there is any package necessary to run?

Thank you in advance.

The CUDA SDK is never needed to run compiled CUDA code. Are you sure you don’t mean the tookit, and in particular the CUDA runtime library, libcudart.so? If that is the case, just copy the library you built against with along with the executable. Be aware driver and runtime libraries are versioned, so you have to use the same runtime library version that you linked against.