packages feed

simpleprelude-1.0: src/SimpleGHC.hs

import Common             ( additionalArgs )
import GHC.Paths          ( ghc )
import System.Environment ( getArgs )
import System.Exit        ( exitWith )
import System.Process     ( rawSystem )


main :: IO ()
main = do
    args <- getArgs
    exitWith =<< rawSystem ghc (additionalArgs ++ args)