Code::Blocks is a free, open-source, cross-platform and extensible C++ IDE with some support for a few other languages such as D and Fortran.
14
votes
1answer
21k views
Program can't find libgcc_s_dw2-1.dll [duplicate]
Possible Duplicate:
The program can't start because libgcc_s_dw2-1.dll is missing
I'm using Code::Blocks and MinGW 4.4 (I think) compiler to create a C++ project. I get this system ...
11
votes
3answers
6k views
“Undefined reference to” template class constructor
I have no idea why this is happenning, since I think I have everything properly declared and defined.
I have the following program, designed with templates. It's a simple implementation of a queue, ...
3
votes
1answer
4k views
Adding static libcurl to Code::Blocks IDE
I can't figure out how to properly add a static libcurl library to my Code::Blocks IDE. I want it static because then no .dll files, which are not included in Windows by default, are needed during ...
11
votes
4answers
10k views
Blob extraction in OpenCV
I'm using OpenCV to filter an image for certain colours, so I've got a binary image of the detected regions.
Now I want to erode those areas and then get rid of the smaller ones, and find the x,y ...
4
votes
2answers
5k views
Boost library setup for Codeblocks [closed]
How to use boost libraries with Codeblocks(Windows) ? What i need to do after downloading the library from boost site ? Any idea, suggestions, pointers ?
2
votes
2answers
2k views
GLFW and codeblocks
I am having some difficulties with codeblocks 10.05 recognizing the GLFW libraries on my machine. When I create an empty project, and copy paste this code found from this GLFW tutorial >> ...
0
votes
1answer
888 views
Code::Blocks and Boost Asio. It just wont work [closed]
I am having trouble getting Boost.Asio to compile in Code::Blocks. I installed and compiled Boost C++ Libraries and got both the given test examples to run. Now I am trying to get Boost.Asio to run.
...
0
votes
3answers
1k views
C++ error: 'Line2' has not been declared
C:\CodeBlocks\kool\praks2\src..\include\circle2.h|8|error:
'Line2' does not name a type|
C:\CodeBlocks\kool\praks2\src..\include\circle2.h|17|error:
'Line2' has not been declared| ||===
...
10
votes
1answer
3k views
Code Blocks, Mingw, Boost, and static linking issues
I am using Code Blocks with mingw and am trying to get a simple program to compile with static linking. I have build the boost libraries using these directions. Everything worked out fine and i was ...
3
votes
2answers
5k views
How do I link to a library with Code::Blocks?
C++ GUI Tutorial: undefined reference to TextOut
I have the same problem, but I'm new to programming and Code::Blocks, and I want to use the GDI32 library. How can I install it? I'm very confused ...
11
votes
4answers
5k views
Why is MinGW very slow?
I'm using Code::Blocks IDE with Gcc/minGW on Windows and I'm trying to build a wxWidgets application which has ca. 20k lines and 40 source modules. And it builds very very slow.
Compiling a cpp module ...
7
votes
3answers
4k views
How to get RPATH with $ORIGIN to work on Code::Blocks GCC?
I'm trying to link an RPATH containing the special string $ORIGIN into an executable built using GCC with the Code::Blocks IDE. I've specified
-Wl,-R$ORIGIN
in the linker options for the project, ...
15
votes
4answers
1k views
Any hosted blog engine with integrated markdown and code highlighting? [closed]
Is anyone aware of any hosted blog engine (like wordpress.com for example) that supports writing posts in Markdown, and also supports code highlighting?
8
votes
3answers
1k views
Do code blocks completely replace delegates?
Now that blocks are finally supported for iphone/ipad development, do these completely remove the need for delegates or are delegates still cleaner as a complete interface implementation while blocks ...
5
votes
3answers
12k views
wxwidgets setup.h “no such file”
A quick Google search of this issue shows it's common, I just can't for the life of me figure out the solution in my case.
I have a straight forward install of wxWidgets 2.8.8 for Windows straight ...