Horde3D

Next-Generation Graphics Engine
It is currently 13.11.2024, 07:27

All times are UTC + 1 hour




Post new topic Reply to topic  [ 9 posts ] 
Author Message
PostPosted: 24.08.2008, 05:31 
Offline

Joined: 21.08.2008, 11:44
Posts: 354
Since 2 month ago i was using MS VCS2005 and SharpDevelop compilers but after some experiments I found the .NET Framework gives very bad performance because of it's lower code execution than non-DotNet compilers and it uses much more memory (about 13mb for just a simple hello world app and up to 70mb for a program that uses some cuttingedge graphical interface) and i have seen projects compiled using MSVC2005 and they don't require the .net framework 2 installed on the users windows.(Is there anybody knows how to get out of the .net2 rid? :oops: )

After this problem I have returned to programming with old fashioned VC6 but it is very hard to use this IDE then I have searched wikipedia for C++ IDE's and I found the Code::Blocks as the best !
Code::Blocks is a crossplatform IDE and it uses the MSVC, DigitalMars, MinGW, Watcom and ...
The Code::Blocks best and fully integrated compiler for windows is MinGW.

I want to know what performance differences is between MinGW and MSVC compilers such as Code optimizations and execution speed, CPU and Memory usage and at last compiled file size and compatibilities ; If anybody have experience with those compilers please comment your experiences :!: !

All of your ideas and helps are welcome :idea: :)


Last edited by Siavash on 15.12.2009, 15:17, edited 1 time in total.

Top
 Profile  
Reply with quote  
PostPosted: 24.08.2008, 11:31 
Offline

Joined: 15.06.2008, 11:21
Posts: 166
Location: Germany
Many say that MSVC has better optimization, though I recently found some people (which should have knowledge about that) that told that MinGW is often faster. The difference shouldn't be too big in any case though, they should both create comparable code in terms of speed and size. Also Intel C++ is told to be faster than these two, at least on some systems.

MinGW produces larger C++ binaries than MSVC though afaik, because of the way the standard library gets linked iirc.

(I am on Linux and therefore don't really care about this as GCC is the only really option)


Top
 Profile  
Reply with quote  
PostPosted: 24.08.2008, 12:54 
Offline

Joined: 26.03.2008, 02:58
Posts: 160
The differences in terms of performance are pretty much ignorable. If you write clean code you can compile in either compiler without any big issues. Even if you do not own the compiler you can easily find someone to compile it for you ;) personally i use MSVC compilers as do "most" on the game development industry.


Top
 Profile  
Reply with quote  
PostPosted: 24.08.2008, 22:51 
Offline

Joined: 22.11.2007, 17:05
Posts: 707
Location: Boston, MA
From what I have seen, MSVC tends to be a pretty decent compiler, and tends to out perform MinGW (aka GCC) on Windows. Intel C++ and Comeau (a little more expensive) tend to outperform both by a considerable amount, but for most things, any of them will be fine.

_________________
Tristam MacDonald - [swiftcoding]


Top
 Profile  
Reply with quote  
PostPosted: 25.08.2008, 01:28 
Offline

Joined: 08.11.2006, 03:10
Posts: 384
Location: Australia
Siavash wrote:
Since 2 month ago i was using MS VCS2005 and SharpDevelop compilers but after some experiments I found the .NET Framework gives very bad performance because of it's lower code execution than non-DotNet compilers ... i have seen projects compiled using MSVC2005 and they don't require the .net framework 2 installed on the users windows.(Is there anybody knows how to get out of the .net2 rig? :oops: )

After this problem I have returned to programming with old fashioned VC6 but it is very hard to use this IDE then I have searched wikipedia for C++ IDE's and I found the Code::Blocks as the best !
I use both MSVC 2008 and Code::Blocks/MinGW(GCC) for my project. Performance is about the same.

At work I also use MSVC 2003 and MSVC 2005 for writing pure C++ (no Dot Net!).

You can easily use the MSVC compilers to generate non-DotNet projects - just make sure to choose a "Win32" project template instead of a "CLR" project template.


Top
 Profile  
Reply with quote  
PostPosted: 25.08.2008, 08:30 
Offline

Joined: 18.05.2008, 17:47
Posts: 96
Of course msvc is faster. because it is created by people who have access to windows source code.
It generates smaller binaries. But for the speed, I don't think there is too much difference.


Top
 Profile  
Reply with quote  
PostPosted: 25.08.2008, 10:01 
Offline

Joined: 22.08.2008, 14:59
Posts: 5
The code size of MinGW compiled binaries is much bigger because it does static linking of the std C/C++ libraries.
MSVC use dynamic linking against the VC runtime libraries. So you have to add the MSVC runtime libraries to compare the size ;)

The speed is basicly the same except you use many try/catch blocks in your code. In this case MinGW is slower because of the poor exception implementation. (Maybe changed with GCC 4.x?)


Top
 Profile  
Reply with quote  
PostPosted: 27.08.2008, 07:18 
Offline

Joined: 21.08.2008, 11:44
Posts: 354
At the VC++6 time the GCC was the best choice but these years the MSVC2005 is better than GCC 3 because of it's faster and optimized codes and smaller compiled file sizes. But it seems GCC provides faster codes on linux.
Already GCC 4.x is improved in performance and code optimizations and by using MinGW + Code::Blocks it competes with MSVC2005 Express on windows platform too.

I will do some post about MSVC2005 Pro vs C::B + MinGW later (next 2 month :mrgreen: ).


Top
 Profile  
Reply with quote  
PostPosted: 27.08.2008, 13:12 
Offline

Joined: 22.08.2008, 14:59
Posts: 5
Yes, would be interesting. But I guess there is not much speed difference between the state of the art c-compilers.


Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 9 posts ] 

All times are UTC + 1 hour


Who is online

Users browsing this forum: No registered users and 6 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
cron
Powered by phpBB® Forum Software © phpBB Group