Code::Blocks Forums

User forums => Help => Topic started by: Xander314 on May 07, 2012, 01:50:34 pm

Title: CodeBlocks SVN Plugin SDK version mismatch 1.13.1, expecting 1.13.0
Post by: Xander314 on May 07, 2012, 01:50:34 pm
I just checked the Code::Blocks source out from SVN. I ran
Code
./bootstrap
./configure --with-contrib-plugins=all
make -j5
dpkg-buildpackage
and then installed with
Code
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
Code
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
Code
dpkg -i *deb
, I get the following error:
Code
Errors were encountered while processing:
 codeblocks-wxcontrib-headers_10.05svn7953_all.deb

Any idea what's causing these?
Title: Re: CodeBlocks SVN Plugin SDK version mismatch 1.13.1, expecting 1.13.0
Post by: oBFusCATed on May 07, 2012, 01:52:57 pm
You're mixing versions of C::B.

- 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.
Title: Re: CodeBlocks SVN Plugin SDK version mismatch 1.13.1, expecting 1.13.0
Post by: Xander314 on May 07, 2012, 01:55:28 pm
Okay, will do. Thanks.

Quote
And never ever again use make install when you've used --prefix=/usr or /usr/local.
Yeah, I know that now  :-\