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.
17
votes
4answers
2k 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?
15
votes
1answer
23k 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 ...
15
votes
4answers
372 views
a c++ program returns different results in two IDE
I write the following c++ program in CodeBlocks, and the result was 9183. again I write it in Eclipse and after run, it returned 9220. Both use MinGW. The correct result is 9183. What's wrong with ...
14
votes
2answers
12k views
Export a makefile from codeblocks
Is it possible to export a makefile from a c++ codeblocks project?
If so, how is it done?
Best Regards
13
votes
3answers
7k 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, ...
13
votes
2answers
9k views
making a constant array in c++
Is there any reason why codeblocks is telling me that I can't make an array? I'm simply trying to do:
const unsigned int ARRAY[10] = {0,1,2,3,4,5,6,7,8,9};
and it's giving me
error: a ...
13
votes
6answers
15k views
Getting Clang to work on windows
I have followed the following step by step guide:http://clang.llvm.org/get_started.html and I've managed, after a bit of fiddling, to get clang to compile using code:blocks and MinGW. Great, so now I ...
11
votes
4answers
11k 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 ...
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 ...
11
votes
5answers
18k views
ld.exe: cannot open output file … : Permission denied
I recently installed CodeBlocks with mingw32 on Windows 7 Ultimate 32bit in order to dust off my c skills, but this problem has me somewhat stumped.
I decided to fire off a short Fibonacci generator ...
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 ...
9
votes
2answers
183 views
List of what each of <% means (<%#, <%=, etc…) [duplicate]
Possible Duplicate:
ASP.NET “special” tags
You know how you can embed property value from code-behind in your page by simply using <%= PropertyFromCodeBehind %> in your ...
9
votes
1answer
210 views
How can I specify the subsystem in the CodeBlocks additional linker options?
One of the things I find nice about CodeBlocks is that it allows me to quickly create, compile and run a file without creating a project. However, this means that all of my programs have console ...
8
votes
3answers
6k views
HTML Encoding Blocks - Invalid expression term ':'
I'm developing a new ASP.NET MVC 2.0 application and wanting to use the new ASP.NET 4 encoding blocks.
My View code contains <%: Model.ActivityName %> however Visual Studio is reporting:
...
8
votes
4answers
2k 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 ...