Author Topic: CodeBlocks SVN Plugin SDK version mismatch 1.13.1, expecting 1.13.0  (Read 6141 times)

Offline Xander314

  • Single posting newcomer
  • *
  • Posts: 7
    • SFML Coder
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?

Offline oBFusCATed

  • Developer
  • Lives here!
  • *****
  • Posts: 13413
    • Travis build status
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.
(most of the time I ignore long posts)
[strangers don't send me private messages, I'll ignore them; post a topic in the forum, but first read the rules!]

Offline Xander314

  • Single posting newcomer
  • *
  • Posts: 7
    • SFML Coder
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  :-\