I just checked the Code::Blocks source out from SVN. I ran
./bootstrap
./configure --with-contrib-plugins=all
make -j5
dpkg-buildpackage
and then installed with
dpkg -i *deb
When I run Code::Blocks, I get a popup about plugin loading failure. In the application log, there is a long list of statements like the following
SDK version mismatch for ThreadSearch (1.13.1). Expecting 1.13.0
It seems particularly strange that it's expecting a lower version. What am I doing wrong?
Two other small issues:
- This is SVN 7953, but the splash screen says 7929 (which is the last Code::Blocks version I installed, unfortunately with make install that time).
- When running dpkg -i *deb, I get the following error:
Errors were encountered while processing:
codeblocks-wxcontrib-headers_10.05svn7953_all.deb
Any idea what's causing these?
You're mixing versions of C::B.
Quote from: Xander314 on May 07, 2012, 01:50:34 PM
- This is SVN 7953, but the splash screen says 7929 (which is the last Code::Blocks version I installed, unfortunately with make install that time).
Clean your systems and do a clean rebuild of the packages.
And never ever again use make install when you've used --prefix=/usr or /usr/local.
Okay, will do. Thanks.
QuoteAnd never ever again use make install when you've used --prefix=/usr or /usr/local.
Yeah, I know that now :-\