Code::Blocks Forums

User forums => Help => Topic started by: arew264 on April 26, 2007, 11:39:45 pm

Title: Which Compiler to Use?
Post by: arew264 on April 26, 2007, 11:39:45 pm
I'm a little (actually a lot) unfamiliar with compilers. I'm trying to make a native windows C++ app.
Is MinGW a linux emulator (as I recall it is) and if I made an app with it, would it run on systems without MinGW?
Should I use the Microsoft VC compiler? Is there another compiler I can use to make native windows binaries?
Title: Re: Which Compiler to Use?
Post by: NeverDream on April 27, 2007, 02:16:26 am
MinGW is a native Windows compiler. It's a Windows port of GCC and provides the win32 API. The Microsoft VC++ compiler is likely more optimized for native Windows apps, but it's a hefty download (you'll need VC++ 2005 Express and the platform sdk).
Title: Re: Which Compiler to Use?
Post by: arew264 on April 27, 2007, 02:20:59 am
That's the humorous part... I already have VC++ and the PSDK.
I'll go with MinGW for now because I hate Microsoft (yet I'm creating an app for their OS?)
Maybe at some point I will switch, but I'll stick with what works well and easily.