Something that seems to have crept recently into the svn repository is a missing library during the compile or install phase.
For every new commit, I run the following with no problems:
make clean uninstall clean uninstall && ./configure --enable-contrib && make && make install
The build and install runs fine without errors, but running codeblocks now gives...
codeblocks: error while loading shared libraries: libcodeblocks.so.0: cannot open shared object file: No such file or directory
--
Kip
Try running ldconfig. If this doesn't work, try this:
make uninstall
make clean-bin
make clean-zipfiles
make
sudo make install
Thanks Mandrav. Got it to work.
Kip