News:

Accounts with zero posts and zero activity during the last months will be deleted periodically to fight SPAM!

Main Menu

Missing Shared Library

Started by kip, September 04, 2006, 11:28:08 PM

Previous topic - Next topic

kip

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

mandrav

Try running ldconfig. If this doesn't work, try this:


make uninstall
make clean-bin
make clean-zipfiles
make
sudo make install
Be patient!
This bug will be fixed soon...

kip

Thanks Mandrav. Got it to work.

Kip