you need to make a link with the libraries.
The error tells you what library is needed by the program (libwx_gtk2_xrc-2.6.so.0). You need to create a link to your wxGTK library named that. Finding the file that exists that you need to use is a bit more tricky. basically take part of the name of the file that's missing (libwx_gtk2_xrc-2.6.so.0) and do an ls -l on that name part.
You should get a lot of listings. link to the file that's not a symlink.
You might do something like:
Code:
ln -s /usr/lib/libwx_gtk2_xrc-2.6.so.0.1.1 /usr/lib/libwx_gtk2_xrc-2.6.so.0
^ that's the library that (may) exists ^ this is the link you need to create