i am Install the MinGW Compiler Suite in the directory C:\MinGW and also set PATH environment.i don't know about uses in any project and i wan to compiled my program with gcc compiler but i don't know the steps.any one help me for "how to compile my program with gcc co"

thanks

link|improve this question
feedback

2 Answers

Just use this:

mingw-downloader

link|improve this answer
feedback

I usually install minGW from sourceforge using the automated installation. http://sourceforge.net/projects/mingw/files/Automated%20MinGW%20Installer/

Select "mingw-get". Then, by sure to install gcc c++ compiler features. To check the installation is ok, write "gcc -v" from the command line. You should view the gcc version.

If it doesn't work, check your system paths. "C:\MinGW\bin" should be correcty configured.

To develop your apps in an easy and fast way, you could download Eclipse-CDT for Windows. http://www.eclipse.org/cdt/downloads.php

Eclipse doesn't need any installation. Decompress it in a directory you want and ready to work. If doesn't work, you will probably need to install a java virtual machine previously.

Eclipse automatically detects your MinGW installation, so you don't need to do anything.

Create a new C-proyect (select the test proyect "Hello World" or write your own), and then compile and run.

That is all. Regards

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.