Page 1 of 1

Ubuntu Lucid install problem

Posted: Wed Jul 14, 2010 6:34 pm
by ptwaugh
On Ubuntu 10.04, after install I get this:

Code: Select all

patrick@laptop:~$ codelite
codelite: relocation error: /usr/lib/codelite/libpluginu.so: symbol _ZN13wxAuiNotebook7SetFontERK6wxFont, version WXU_2.8 not defined in file libwx_gtk2u_aui-2.8.so.0 with link time reference
This is what I did to install:

Code: Select all

sudo dpkg -i ./Downloads/codelite_2.5.3.4075-ubuntu0_amd64.deb
sudo apt-get -f install
sudo apt-get install python-wxgtk2.8 python-wxtools wx2.8-i18n
Any ideas?

patrick

Re: Ubuntu Lucid install problem

Posted: Wed Jul 14, 2010 6:45 pm
by eranif
The package from SF are built for Ubuntu 9.10 (Karmic)
Unfortunately, ubuntu does not maintains a binary compatibility between its distro.

To run codelite under 10.04 (lucid) you will need to build codelite from sources - an easy task or you could wait for the next release (which will only include lucid .deb files)

To build codelite from sources follow these steps:

1) Install compiler / svn :

Code: Select all

sudo apt-get install build-essential subversion
2) Install WX / GTK required by codelite:

Code: Select all

sudo apt-get install libwxgtk2.8-dev libgtk2.0-dev
3) Checkout codelite sources:

Code: Select all

svn co https://codelite.svn.sourceforge.net/svnroot/codelite/trunk codelite-src
4) build codelite:

Code: Select all

cd codelite-src
./configure
make
sudo make install
Thats it.
Eran

Re: Ubuntu Lucid install problem

Posted: Wed Jul 14, 2010 7:37 pm
by ptwaugh
Thanks.

Sorry I didn't see this same info just a few posts down before posting. :(

patrick