Do you have any previous installation of codelite on these machines? The backtrace shows that codelite is attempting to load a plugin which is not somehow corrupted
FYI: I am using Linux Mint 17 x64 on daily basis with no crashes...
Maybe an older builds of codelite are lying around?
(A dumb question) Did you run make install?
Code: Select all
rick@rick-p775d ~/git/codelite/build-debug $ gdb codelite
This looks a bit strange to me, how did you build your debug build? (paste here the cmake command you used)
Usually, when I build a debug build I use a different PREFIX so it won't interfere with the release build (e.g. -DPREFIX="/home/eran/root" ) this will create a clean installation of codelite under "/home/eran/root", (i.e. codelite executable is placed under /home/eran/root/bin/codelite, the plugins will go to /home/eran/root/lib/codelite etc) - this way I ensure that codelite is installed in a clean location without "history"
So I would expect something like this:
gdb /home/eran/root/bin/codelite and not gdb codelite...
Eran