Ubuntu Lucid install problem

CodeLite installation/troubleshooting forum
ptwaugh
CodeLite Curious
Posts: 2
Joined: Wed Jul 14, 2010 6:31 pm
Genuine User: Yes
IDE Question: c++
Contact:

Ubuntu Lucid install problem

Post 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
User avatar
eranif
CodeLite Plugin
Posts: 6375
Joined: Wed Feb 06, 2008 9:29 pm
Genuine User: Yes
IDE Question: C++
Contact:

Re: Ubuntu Lucid install problem

Post 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
Make sure you have read the HOW TO POST thread
ptwaugh
CodeLite Curious
Posts: 2
Joined: Wed Jul 14, 2010 6:31 pm
Genuine User: Yes
IDE Question: c++
Contact:

Re: Ubuntu Lucid install problem

Post by ptwaugh »

Thanks.

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

patrick
Post Reply