Quote:
Originally Posted by Ganahim
Im a beginner in C programming, and i'm under the impression that Dev-Cpp uses gcc as its compiler.
|
If I understand correctly (from a quick look at the web site) Dev-Cpp uses MinGW (as PSM told you).
MinGW is one of the two popular Windows ports of GCC (the other is Cygwin).
So you do have a copy of GCC installed that can be used from the Windows command prompt, provided you have the right path and other environment variables set up.
Quote:
is there any way to compile my stuff with it manually in the command prompt in windows(vista)?
|
Yes. Have you tried it?
Depending on how MinGW was installed, the path entries and other environment variables it needs (for finding lib and include files) might or might not have been added to system wide environment variables.
I never leave path entries or other environment variable from any compiler install in Windows in the system wide set, because I use too many different compilers on one computer.
I have a special link to command prompt for use with each compiler and that link runs a .bat file each time it opens that command prompt. That .bat file adjusts the path and environment variables as appropriate for that compiler. I think that is the best way to use MinGW from a command prompt. Depending on how you installed MinGW, you might or might not need a .bat file like that to prepare a command prompt window for use with MinGW.