Jump to content
  • entries
    38
  • comments
    119
  • views
    85,114

Code::Blocks


Canardia

2,823 views

 Share

I'm testing Code::Blocks with LE2, instead of Visual Studio 2008/2010.

So far it seems quite nice, and very intuitive to learn and configure.

I already found some benefits of Code::Blocks over Visual Studio:

 

1) LE2 syntax highlighting can be configured to be different from the built-in C++ keywords. In VS they always have the same color.

2) Compiling time is much faster, because it can use MinGW.

3) Generated code is much faster, because it can use -O3 and -O6 optimizations.

4) Loading the IDE is much faster.

5) Compiling can be configured to stop at the first error, while in Visual Studio it always tries to compile the whole source code first which takes ages and is useless if there was a first error.

6) Code::Blocks works also on Mac and Linux, so you can have the same IDE under any OS.

7) Using MinGW in Code::Blocks gets rid of the VS RunTime needs, which needs the user to install MSVCRT90.dll, or you to include them in an Microsoft.VC90.CRT folder with your game.

8) Intellisense is super fast and smart. It shows only keywords which match what you typed so far, and it works with LE2 commands too.

9) Code::Blocks work also with Wine in Linux, while Visual Studio does not, so you can use Linux to write and play your LE2 games. Wine runs also LE2 games 20 FPS faster than Windows XP (and of course much faster than Vista/7, since XP is much faster than those).

10) Showing/hiding the console window of LE2 can be easily turned on/off in Code::Blocks with the -mwindows linker option, while in Visual Studio you need either some preprocessor pragmas or some complicated System target settings.

11) Code::Blocks cleans up whitespaces after lines automatically, while in Visual Studio you have to do this manually.

 

I will make a tutorial how to setup a LE2 project with Code::Blocks next.

 Share

4 Comments


Recommended Comments

Code::Blocks also works without Wine on Linux.

And I never had to clean up whitespaces in VS. Look it up in your options.

Link to comment
3) Generated code is much faster, because it can use -O3 and -O6 optimizations.

 

... allowing you to substitute the superior x86 optimizer of the VC compiler with GCC's inferior optimizer.

 

7) Using MinGW in Code::Blocks gets rid of the VS RunTime needs, which needs the user to install MSVCRT90.dll, or you to include them in an Microsoft.VC90.CRT folder with your game.

 

... and substitutes it for the MinGW runtime which no one has installed.

Link to comment

If VC's x86 optimizer is superior, how come that MinGW creates faster code then?

 

As far I know MinGW doesn't need any runtime, it's all in the exe.

Link to comment

- You can optimize VS build times (link).

- MinGW runtime is embedded in the executable, you can achieve the same with static linking in VS.

- VS2010 lite SQL intellisense is way better as in VS2008. I see no obvious plus points in code::blocks.

- VS2010 can stop build on first error with some IDE macro, already implemented in some extensions.

- VC++ optimizer is one of the best on the market! Even the MS STL optimizations are a blast (funcky meta-programming), that's why compiling takes a tad longer :).

 

This is my overall opinion, not LE2 related. VS beats every other IDE in easy of use (personal opinion)!

Link to comment
Guest
Add a comment...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...