[project @ 2003-06-12 16:06:06 by simonmar]
authorsimonmar <unknown>
Thu, 12 Jun 2003 16:06:07 +0000 (16:06 +0000)
committersimonmar <unknown>
Thu, 12 Jun 2003 16:06:07 +0000 (16:06 +0000)
commitfcc7094bfb5cf5beb7d29ea9257adc6196ff9fc7
treedce7f773bfdcb84b50867dcd7ddb2470d5aad5e5
parent8b09945bb2232654a357e7bbf9acef37ee21d9ef
[project @ 2003-06-12 16:06:06 by simonmar]
Change the type of System.Cmd.rawSystem:

  rawSystem :: FilePath -> [String] -> IO ExitCode

and implement it properly on both Windows & Unix.  The intended
meaning is that the program is executed with *exactly* these
arguments.

We now re-use this rawSystem in the compiler itself (using it directly
from the library if __GLASGOW_HASKELL__ >= 601).

The previous implementation of SysTools.runSomething was broken on
4.08, because Posix.executeFile was broken.  However, implementing the
new rawSystem on 4.08 is tricky, because it uses the FFI marshalling
libraries which weren't present on 4.08.  Hence, bootstrapping from
4.08 is now not possible (it was already not possible on Windows).  It
could be made possible by importing enough FFI marshalling support,
but I won't bother doing that unless/until it is needed.
System/Cmd.hs
cbits/rawSystem.c
include/HsBase.h