Hello,
after Ubuntu x64 dist upgrade from 9.04 to 9.10 I have problems starting codelite 3035... before upgrade I had codelite 3035 installed and working, now latest version doesn't work (when I try to start it, window from application doesn't show, only notification 'starting codelite...' in applications area (bottom of screen) and after about 20seconds it disappears and nothing else happens). I've tried to remove it and install again - same problems... but interesting thing is that version installed by ubuntu's sinaptic manager (ver 2893) is starting without problems. Does anyone encountered such problems? Maybe there are logs I could provide to help solve this? I've checked systems logs but couldn't find any relevant information.
codelite 3035 can't start on ubuntu 9.10
-
- CodeLite Curious
- Posts: 2
- Joined: Tue Nov 03, 2009 2:24 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
-
- CodeLite Plugin
- Posts: 819
- Joined: Wed Sep 03, 2008 7:26 pm
- Contact:
Re: codelite 3035 can't start on ubuntu 9.10
Hi,
Unfortunately the supplied CodeLite .debs won't run on karmic: at least one of the libs that karmic comes with isn't backward-compatible. (It's actually surprising that the current .debs work from hardy to jaunty.)
It's likely that future CodeLite releases will come with both karmic and pre-karmic debs. Meanwhile, either use the karmic package version, or build your own.
Regards,
David
Unfortunately the supplied CodeLite .debs won't run on karmic: at least one of the libs that karmic comes with isn't backward-compatible. (It's actually surprising that the current .debs work from hardy to jaunty.)
It's likely that future CodeLite releases will come with both karmic and pre-karmic debs. Meanwhile, either use the karmic package version, or build your own.
Regards,
David
-
- CodeLite Curious
- Posts: 2
- Joined: Tue Nov 03, 2009 2:24 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: codelite 3035 can't start on ubuntu 9.10
Yep, building application from source fixed my problems - and I have latest svn version working! Hope it's stable ;p
- eranif
- CodeLite Plugin
- Posts: 6375
- Joined: Wed Feb 06, 2008 9:29 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: codelite 3035 can't start on ubuntu 9.10
Thats the one I am usingzodiaq wrote:Hope it's stable ;p
It is pretty stable and you might find it better than the previous version, it also contains some big improvements, such as:
- active tip for the debugger
- New look (output view was replaced by a new control, tabs are different)
- 'Finder' (the little search box at the bottom of codelite) to quickly navigate your code, to find any class/struct/macro/workspace file in 2 clicks
- Faster and more reliable code-completion, no more external symbols database is required
and other improvements
Eran
Make sure you have read the HOW TO POST thread
-
- CodeLite Curious
- Posts: 5
- Joined: Fri Nov 13, 2009 7:05 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: codelite 3035 can't start on ubuntu 9.10
yes. rocks and working fine!
- zaphod
- CodeLite Veteran
- Posts: 55
- Joined: Fri Sep 11, 2009 6:20 pm
- Contact:
Re: codelite 3035 can't start on ubuntu 9.10
I ran straight into this problem in the middle of setting up a new computer. I'm reluctant to build from source since that will set me back a long way. I'm also inexperienced enough to not know how to roll back the codelite installation to the karmic packaged version. Can someone tell me the steps please?
I'm stuck.
I'm stuck.
- eranif
- CodeLite Plugin
- Posts: 6375
- Joined: Wed Feb 06, 2008 9:29 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: codelite 3035 can't start on ubuntu 9.10
- Remove the codelite you installed on your machine (version 3035) like this:
Next, install the version that comes in Ubuntu9.10 repositories:
Eran
Code: Select all
sudo dpkg -r codelite
Code: Select all
sudo apt-get install codelite
Make sure you have read the HOW TO POST thread