I am trying to install Code::Blocks 10.05 from (non-SVN) sources (codeblocks-10.05-src.tar.bz2). My OS is Ubuntu 11.04. I needed to download and install wxWidgets first (I now have wxGTK-2.8.12), which seemed to work. I compiled it according to these instructions:

http://wiki.codeblocks.org/index.php?title=Installing_Code::Blocks_from_source_on_Linux

Then I configured C::B with

./configure --with-wx-config=/opt/wx/2.8/bin/wx-config

and ran

export LDFLAGS="-Wl,-R /opt/wx/2.8/lib"
make
sudo -i
make install

When trying to run C::B, I get the following error:

codeblocks: error while loading shared libraries: libwx_gtk2u-2.8.so.0: cannot open shared object file: No such file or directory

The same question was asked here: error while loading shared libraries, but the suggested solution (namely adding the wxWidgets config to the options passed to configure) didn't work for me.

The output of wx-config --prefix is /opt/wx/2.8,

The output of wx-config --libs is -L/opt/wx/2.8/lib -pthread -lwx_gtk2u-2.8,

and that of which wx-config is /opt/wx/2.8/bin/wx-config.

I looked for the library and found /opt/wx/lib/libwx_gtk2u-2.8.so.0 to be a link to libwx_gtk2u-2.8.so.0.8.0 in the same folder.

What might be wrong here?

link|improve this question

50% accept rate
feedback

2 Answers

Probably the easiest way to get code::blocks up and running on Ubuntu is to just install it via the Synaptic Package Manager. Just type in codeblocks into 'Quick search'. Find codeblocks on the list and just right-click to mark for install. Any dependencies and missing libraries needed will automatically be handled and installed by Synaptic as necessary.

If you're interested in trying the C::B nightly builds on Ubuntu then you'll want to checkout Jens' unofficial debian-repository here.

link|improve this answer
The ubuntu packages work, but I had trouble building wxWidgets applications with them. That's why I tried to compile C::B and wxWidgets from source in the first place. I'm new to wxWidgets, maybe I just mis-configured my projects. Nonetheless, that wouldn't explain why the self-built C::B failed to load the library. – Christoph Aug 27 '11 at 17:08
feedback

The problem is that the program cannot find the WX widgets libraries at run time. You will need to set your LD_LIBRARY_PATH variable to include the location of wxWidgets like this:

LD_LIBRARY_PATH=/opt/wx/2.8/lib ./codeblocks

The reason why its failing is because you compiled codeblocks against wxWidgets found in /opt/ and not the one installed in /usr/; the program doesn't know to look in /opt for the wx libraries.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.