MinGW C Compiler
================

MinGW (Minimalist GNU for Windows) is part of the GNU Compiler Collection (GCC), and GNU Binutils, for use in the development of native Microsoft Windows applications. See http://www.mingw.org

Console mode programs are compiled from the command line. For example (using fce32.dll)

   gcc -Wall fcever.c fce32.lib -o fcever.exe

and (using fce32gcc.obj)

   gcc -Wall -DSTATIC_LIBRARY fcever.c fce32gcc.o -lwsock32 -o fcever.exe

The current version of MinGW does not come with a resource compiler (for RC files), so GUI Window applications that use resource files cannot be compiled with MinGW.

The file, gcc.zip, contains the MinGW (gcc) project command files.

All MinGW GCC compile & link command files end with "$gcc.bat" or "$gcc(s).bat".

[END]

