--- In [email protected], "Danilo Uccelli" <[EMAIL PROTECTED]> wrote: >
> Hi, > Is it possible to compile PrtFilter in Mingw32 ? > Do you know the command line I should use for that ? > > I am sorry to ask something so basic but my only experience using GCC > for PC x86 compilations is to type "make all" ;-) > make deals with correctly compiling, linking and assembling all the individual files that make up a project, it is a bit superfluo when you just have one file. Mingw32 is just a Win32API build of the GNU compiler, so you should use the gcc command: gcc PrtFilter.c Note that on windows gcc may well not be in your path so you will likely need something like: c:\MinGW\bin\gcc PrtFilter.c That will produce something like a.exe, which you could rename to PrtFilter.exe, or you could use c:\MinGW\bin\gcc PrtFilter.c -o PrtFilter.exe To get the output straight into PrtFilter.exe Ciao, Roger.
