Re: [hatari-devel] Building Hatari 2.xx on Windows platform (?) |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/hatari-devel Archives
]
On Dienstag, 27. Juni 2017 15:26:27 CEST Douglas Little wrote:
> My attempt using mingw was to build from its own msys shell (i.e. not using
> cygwin at all).
Theoretically, that should work too. The problem there might be that msys is a
lightweight unix environment similar to cygwin, and bash, perl, make and
almost all of the commandline tools are msys-binaries, that means when they
look in /usr/... they actually access somehing like C:\MingW\msys\1.0\...
Otoh, the gcc driver and all its sub-processes are plain windows exes. That
works transparently, as long as the executable that spawns those tools (make
in the case of using automake) is itself a msys-binary.
That might not work very well with cmake, which is a windows-exe. It won't find
tools that only exist in the msys enviroment. You would probably need a cmake
build for msys, dunno wether such a thing exists. It might be easier to use a
cross-compiler on linux.