Author Topic: One or more plugins were not installed successfully  (Read 11641 times)

Offline amd

  • Single posting newcomer
  • *
  • Posts: 9
One or more plugins were not installed successfully
« on: March 20, 2012, 08:26:08 pm »

Hi,

I’m new in this forum, I’m trying to develop a codeBlocks plugin but i have some problems getting started.
I downloaded codeBlocks 10.05 and xwWidgets 2.8.12.0 using xwPack. And when i create a plugin project it compiles but i can’t install it when i try I’m getting this message "One or more plugins were not installed successfully"

Thanks
 

Offline ptDev

  • Almost regular
  • **
  • Posts: 222
Re: One or more plugins were not installed successfully
« Reply #1 on: March 20, 2012, 09:43:50 pm »
How did you compile the plugin? In simplistic terms, plugins must be built alongside Code::Blocks in order to be binary compatible...

Offline oBFusCATed

  • Developer
  • Lives here!
  • *****
  • Posts: 13413
    • Travis build status
Re: One or more plugins were not installed successfully
« Reply #2 on: March 20, 2012, 11:40:54 pm »
And you need to use the same compiler and libraries your version of C::B was build with.
(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 amd

  • Single posting newcomer
  • *
  • Posts: 9
Re: One or more plugins were not installed successfully
« Reply #3 on: March 21, 2012, 12:52:05 pm »
@ptDev what do you by alongside Code::Blocks. and im using the same compiler
when i open myPlugin.zip there is only the manifest.xlm file.

Thanks

Offline ollydbg

  • Developer
  • Lives here!
  • *****
  • Posts: 5910
  • OpenCV and Robotics
    • Chinese OpenCV forum moderator
Re: One or more plugins were not installed successfully
« Reply #4 on: March 21, 2012, 02:53:55 pm »
Why not just use svn client to check out all the c::b's source code, and build everything. Note: There are many plugins in the c::b's source(some are very simple, and some are quite complex), so you can just copy and modify to create your own plugin.
If some piece of memory should be reused, turn them to variables (or const variables).
If some piece of operations should be reused, turn them to functions.
If they happened together, then turn them to classes.

Offline amd

  • Single posting newcomer
  • *
  • Posts: 9
Re: One or more plugins were not installed successfully
« Reply #5 on: March 21, 2012, 03:43:46 pm »
I cant use svn to check out im getting "Unable to connect to a repository at URL 'svn://svn.berlios.de/codeblocks/trunk'"
so i downloaded c::b binaire and then c::b releases.

Offline oBFusCATed

  • Developer
  • Lives here!
  • *****
  • Posts: 13413
    • Travis build status
Re: One or more plugins were not installed successfully
« Reply #6 on: March 21, 2012, 04:42:20 pm »
Use this command and it should work: "svn checkout http://svn.berlios.de/svnroot/repos/codeblocks/trunk"
Currently the svn:// protocol of berlios.de is broken.
(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!]