Code::Blocks Forums

Developer forums (C::B DEVELOPMENT STRICTLY!) => Development => Topic started by: kip on September 04, 2006, 11:28:08 pm

Title: Missing Shared Library
Post by: kip on September 04, 2006, 11:28:08 pm
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
Title: Re: Missing Shared Library
Post by: mandrav on September 04, 2006, 11:34:29 pm
Try running ldconfig. If this doesn't work, try this:

Code
make uninstall
make clean-bin
make clean-zipfiles
make
sudo make install
Title: Re: Missing Shared Library
Post by: kip on September 05, 2006, 12:15:56 am
Thanks Mandrav. Got it to work.

Kip