Mail Archives: djgpp/2000/05/23/06:05:51
On Tue, 23 May 2000, Damian Yerrick wrote:
> >It should be possible
> >to compile crafty with mingw32. It would need some Makefile hacking.
>
> But not very much if you already have a working DJGPP makefile;
> DJGPP and mingw32 are both GNU make + GCC + GNU binutils.
I'm guessing that you never had to tinker with Makefiles too much ;-)
The real problems are not the names of the development tools--this is
easily parameterized with variables like CC, LD, and CFLAGS--the real
problems are dependencies on shell features and built-in commands, and
the subtle aspects of special characters such as ' and ". It is very
hard to get these right so that it will work with more than a single
port of Make. And if one of the Make's is MSVC's nmake with its
totally alien syntax, you are toast.
> From what I've read, unoptimized GCC output is total cr4p.
That's because the ``unoptimized'' output of other compilers is not
really unoptimized. They do some optimizations by default.
- Raw text -