24 Jan
2004
24 Jan
'04
1:49 p.m.
Antony Courtney wrote:
[...]1. GHC does not use Cygwin, and produces executables that do not use the Cygwin library or understand Cygwin-style file paths. [...]
Just a note: Problems like this is exactly the reason why GHC's and Hugs' configuration scripts contain monstrosities like: # Check to see if cygpath exists. If so, use it. cygpath -w a >/dev/null 2>&1 && FPTOOLS=`cygpath -w $FPTOOLS | sed -e 's@\\\\@/@g'` Not nice, but works... Cheers, S.