diff options
author | Ian Lynagh <igloo@earth.li> | 2008-03-23 19:11:46 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2008-03-23 19:11:46 +0000 |
commit | b7bd165a4f973e9ebcad30c8dcffbcc02310fd6e (patch) | |
tree | 143962b5efa24d867920795b34e5a6a1e4ee4a3a /libraries/base/Setup.hs | |
parent | 175e045060daf0f8f4141b23dea6c2652b57fb92 (diff) | |
download | haskell-b7bd165a4f973e9ebcad30c8dcffbcc02310fd6e.tar.gz |
base now uses build-type: Configure
Diffstat (limited to 'libraries/base/Setup.hs')
-rw-r--r-- | libraries/base/Setup.hs | 55 |
1 files changed, 1 insertions, 54 deletions
diff --git a/libraries/base/Setup.hs b/libraries/base/Setup.hs index 2afec6fc79..7cf9bfd7ca 100644 --- a/libraries/base/Setup.hs +++ b/libraries/base/Setup.hs @@ -1,59 +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 - $ buildHook defaultUserHooks, - makefileHook = build_primitive_sources - $ makefileHook defaultUserHooks, - haddockHook = build_primitive_sources - $ haddockHook 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 - +main = defaultMainWithHooks defaultUserHooks |