Author Topic: Missing Shared Library  (Read 3145 times)

kip

  • Guest
Missing Shared Library
« 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

Offline mandrav

  • Project Leader
  • Administrator
  • Lives here!
  • *****
  • Posts: 4315
    • Code::Blocks IDE
Re: Missing Shared Library
« Reply #1 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
Be patient!
This bug will be fixed soon...

kip

  • Guest
Re: Missing Shared Library
« Reply #2 on: September 05, 2006, 12:15:56 am »
Thanks Mandrav. Got it to work.

Kip