MacArthur, Ian (SELEX GALILEO, UK) wrote: > >> This is what I prefer (I use cygwin because it >> gives me parallel building via -jN). > > > FWIW (and going off topic) we use Msys/mingw, and the Msys make also > supports parallel builds, of course. > We backed away from cygwin a few years back - we were having serious > performance issues with our win32 builds, that were traced to the cygwin > layer... I assume you aren't seeing performance issues in your code, > using cygwin?
Msys is ok with gcc, but it cannot handle msvc flags proper, since anything prefix by '/' is evaluates to a path. I.e. /MD is evaluates to C:/MD. Msys make is indeed measurable faster than cygwin make since its runs as a native win32 binary. Thus I use the cmake msys generator when coding with eclipse+mingw. Best, -- Maik _______________________________________________ fltk mailing list [email protected] http://lists.easysw.com/mailman/listinfo/fltk

