[commit: ghc] wip/nfs-locking: Add src/Package/Compile.hs. (e315d33)
git at git.haskell.org
git at git.haskell.org
Thu Oct 26 23:48:59 UTC 2017
Repository : ssh://git@git.haskell.org/ghc
On branch : wip/nfs-locking
Link : http://ghc.haskell.org/trac/ghc/changeset/e315d3381d2441e5acfc86384fb7eff9575cb006/ghc
>---------------------------------------------------------------
commit e315d3381d2441e5acfc86384fb7eff9575cb006
Author: Andrey Mokhov <andrey.mokhov at gmail.com>
Date: Sun Jan 11 03:31:34 2015 +0000
Add src/Package/Compile.hs.
>---------------------------------------------------------------
e315d3381d2441e5acfc86384fb7eff9575cb006
src/Package/Compile.hs | 43 +++++++++++++++++++++++++++++++++++++++++++
1 file changed, 43 insertions(+)
diff --git a/src/Package/Compile.hs b/src/Package/Compile.hs
new file mode 100644
index 0000000..0733a46
--- /dev/null
+++ b/src/Package/Compile.hs
@@ -0,0 +1,43 @@
+{-# LANGUAGE NoImplicitPrelude, ScopedTypeVariables #-}
+module Package.Compile (buildPackageCompile) where
+
+import Package.Base
+import Development.Shake.Util
+
+-- "inplace/bin/ghc-stage1.exe" -hisuf hi -osuf o -hcsuf hc -static -H32m -O -this-package-key deeps_FT5iVCELxOr62eHY0nbvnU -hide-all-packages -i -ilibraries/deepseq/. -ilibraries/deepseq/dist-install/build -ilibraries/deepseq/dist-install/build/autogen -Ilibraries/deepseq/dist-install/build -Ilibraries/deepseq/dist-install/build/autogen -Ilibraries/deepseq/. -optP-include -optPlibraries/deepseq/dist-install/build/autogen/cabal_macros.h -package-key array_3w0nMK0JfaFJPpLFn2yWAJ -package-key base_469rOtLAqwTGFEOGWxSUiQ -package-key ghcpr_FgrV6cgh2JHBlbcx1OSlwt -Wall -XHaskell2010 -O2 -no-user-package-db -rtsopts -odir libraries/deepseq/dist-install/build -hidir libraries/deepseq/dist-install/build -stubdir libraries/deepseq/dist-install/build -split-objs -c libraries/deepseq/./Control/DeepSeq.hs -o libraries/deepseq/dist-install/build/Control/DeepSeq.o
+
+suffixArgs :: Way -> Args
+suffixArgs way = arg ["-hisuf", hisuf way, "-osuf", osuf way, "-hcsuf", hcsuf way]
+
+buildPackageCompile :: Package -> TodoItem -> Rules ()
+buildPackageCompile (Package name path _) (stage, dist, settings) =
+ let buildDir = path </> dist
+ pkgData = buildDir </> "package-data.mk"
+ depFile = buildDir </> "build" </> name <.> "m"
+ in
+ (buildDir </> "build//*o") %> \out -> do
+ let way = detectWay $ tail $ takeExtension out
+ need ["shake/src/Package/Compile.hs"] -- Track changes in this file
+ need [depFile]
+ depContents <- parseMakefile <$> (liftIO $ readFile depFile)
+ let deps = concat $ snd $ unzip $ filter ((== out) . fst) depContents
+ srcs = filter ("//*hs" ?==) deps
+ need deps
+ run (Ghc stage) $ suffixArgs way
+ <> wayHcArgs way
+ <> arg SrcHcOpts
+ <> packageArgs stage pkgData
+ <> arg "-i"
+ <> includeArgs "-i" path (SrcDirs pkgData)
+ <> includeArgs "-i" buildDir ["build", "build/autogen"]
+ <> includeArgs "-I" buildDir ["build", "build/autogen"]
+ <> includeArgs "-I" path (IncludeDirs pkgData)
+ <> arg "-optP-include" -- TODO: Shall we also add -cpp?
+ <> arg ("-optP" ++ buildDir </> "build/autogen/cabal_macros.h")
+ <> arg ["-Wall", "-XHaskell2010", "-O2"] -- TODO: now we have both -O and -O2
+ <> arg ["-odir" , buildDir </> "build"]
+ <> arg ["-hidir" , buildDir </> "build"]
+ <> arg ["-stubdir" , buildDir </> "build"]
+ <> arg "-split-objs"
+ <> arg ("-c":srcs)
+ <> arg ["-o", out]
More information about the ghc-commits
mailing list