News:

When registered with our forums, feel free to send a "here I am" post here to differ human beings from SPAM bots.

Main Menu

C::B With IM

Started by kirash4, April 06, 2014, 05:53:10 AM

Previous topic - Next topic

kirash4

You're probably right, and I think the pthread issue has more to do with MinGW than IM. But, staying on C::B, I need to understand how it works if I'm going to make the transition. So what I want to ultimately do, is create an application with the help of wxWidgets and IM. And I need to be able to distribute that to other people who may or may not have supporting pieces (libraries) installed. What does that mean for me? Are there things I need to be setting within C::B to be able to create binary files that are self contained?

dmoore

That's mostly a choice about using static vs dynamic libs. Most of the libs can be compiled static. But it's also not a huge deal to bundle in a handful of dlls. E.g. code::blocks itself has a handful of self built 3rd party DLLs alongside the main executable.
Python plugins: [url="https://github.com/spillz/codeblocks-python"]https://github.com/spillz/codeblocks-python[/url]
Code::Blocks Daily Builds -- Ubuntu PPA: [url="https://launchpad.net/~damien-moore/+archive/codeblocks"]https://launchpad.net/~damien-moore/+archive/codeblocks[/url]

kirash4

Cool, thanks. I'll look into that. Thanks for all your help with this!