X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=Setup.hs;h=7cf9bfd7caf9fa164c3f88420e5d42fcdfce7c83;hb=a07504ab09e4c63e7ef25c13e4e97466c36a651a;hp=9575aa0a54d224958d3d78e3c1fbd1eb4bf8b017;hpb=fa7614b6882d774d91f3ffa17dbab13b120bcad2;p=ghc-base.git diff --git a/Setup.hs b/Setup.hs index 9575aa0..7cf9bfd 100644 --- a/Setup.hs +++ b/Setup.hs @@ -1,75 +1,6 @@ -{- -We need to do some ugly hacks here as base mix of portable and -unportable stuff, as well as home to some GHC magic. --} - module Main (main) where -import Control.Monad -import Data.List -import Distribution.PackageDescription import Distribution.Simple -import Distribution.Simple.LocalBuildInfo -import Distribution.Simple.Utils -import System.Cmd -import System.FilePath -import System.Exit -import System.Directory -import Control.Exception (try) main :: IO () -main = do let hooks = defaultUserHooks { - buildHook = build_primitive_sources - $ filter_modules_hook - $ buildHook defaultUserHooks, - makefileHook = build_primitive_sources - $ filter_modules_hook - $ makefileHook defaultUserHooks, - haddockHook = build_primitive_sources - $ filter_modules_hook - $ haddockHook defaultUserHooks, - instHook = filter_modules_hook - $ instHook defaultUserHooks } - defaultMainWithHooks hooks - -type Hook a = PackageDescription -> LocalBuildInfo -> UserHooks -> a -> IO () - -build_primitive_sources :: Hook a -> Hook a -build_primitive_sources f pd lbi uhs x - = do when (compilerFlavor (compiler lbi) == GHC) $ do - let genprimopcode = joinPath ["..", "..", "utils", - "genprimopcode", "genprimopcode"] - primops = joinPath ["..", "..", "compiler", "prelude", - "primops.txt"] - primhs = joinPath ["GHC", "Prim.hs"] - primopwrappers = joinPath ["GHC", "PrimopWrappers.hs"] - primhs_tmp = addExtension primhs "tmp" - primopwrappers_tmp = addExtension primopwrappers "tmp" - maybeExit $ system (genprimopcode ++ " --make-haskell-source < " - ++ primops ++ " > " ++ primhs_tmp) - maybeUpdateFile primhs_tmp primhs - maybeExit $ system (genprimopcode ++ " --make-haskell-wrappers < " - ++ primops ++ " > " ++ primopwrappers_tmp) - maybeUpdateFile primopwrappers_tmp primopwrappers - f pd lbi uhs x - --- Replace a file only if the new version is different from the old. --- This prevents make from doing unnecessary work after we run 'setup makefile' -maybeUpdateFile :: FilePath -> FilePath -> IO () -maybeUpdateFile source target = do - r <- rawSystem "cmp" ["-s" {-quiet-}, source, target] - case r of - ExitSuccess -> removeFile source - ExitFailure _ -> do try (removeFile target); renameFile source target - - -filter_modules_hook :: Hook a -> Hook a -filter_modules_hook f pd lbi uhs x - = let lib' = case library pd of - Just lib -> - let ems = filter ("GHC.Prim" /=) (exposedModules lib) - in lib { exposedModules = ems } - Nothing -> error "Expected a library" - pd' = pd { library = Just lib' } - in f pd' lbi uhs x - +main = defaultMainWithHooks defaultUserHooks