I originally posted this as a "programming" problem, for some reason... but anyway:
I recently installed code::blocks and wxGTK from source files. When I try to execute codeblocks, I get the following error:
Code:
./codeblocks
./codeblocks: error while loading shared libraries: libwx_gtk2u-2.8.so.0: cannot open shared object file: No such file or directory
Note the following line in my libcodeblocks.la file (located in /opt/codeblocks-svn/lib):
Code:
# Libraries that this one depends upon. dependency_libs=' -L/opt/wx/2.8/lib -lwx_gtk2u-2.8 -lpthread -ldl'
Also, note the contents of my /opt/wx/2.8/lib folder:
Code:
ls /opt/wx/2.8/lib
libwx_gtk2u-2.8.so libwx_gtk2u-2.8.so.0 libwx_gtk2u-2.8.so.0.1.1 wx
What's wrong???