[commit: ghc] wip/nfs-locking: Add new configuration flags for generating Config.hs. (7ae3a52)

git at git.haskell.org git at git.haskell.org
Thu Oct 26 23:38:14 UTC 2017


Repository : ssh://git@git.haskell.org/ghc

On branch  : wip/nfs-locking
Link       : http://ghc.haskell.org/trac/ghc/changeset/7ae3a52e7f4ea090e99ad98988951067b45e1397/ghc

>---------------------------------------------------------------

commit 7ae3a52e7f4ea090e99ad98988951067b45e1397
Author: Andrey Mokhov <andrey.mokhov at gmail.com>
Date:   Wed Sep 23 02:06:28 2015 +0100

    Add new configuration flags for generating Config.hs.


>---------------------------------------------------------------

7ae3a52e7f4ea090e99ad98988951067b45e1397
 cfg/system.config.in | 33 +++++++++++++++++++++------------
 1 file changed, 21 insertions(+), 12 deletions(-)

diff --git a/cfg/system.config.in b/cfg/system.config.in
index 6bfb20d..2bfe449 100644
--- a/cfg/system.config.in
+++ b/cfg/system.config.in
@@ -21,6 +21,8 @@ haddock        = @hardtop@/inplace/bin/haddock
 
 hsc2hs         = @hardtop@/inplace/bin/hsc2hs
 
+genprimopcode  = @hardtop@/inplace/bin/genprimopcode
+
 ld             = @LdCmd@
 ar             = @ArCmd@
 alex           = @AlexCmd@
@@ -45,23 +47,30 @@ ghc-source-path      = @hardtop@
 # Information about host and target systems:
 #===========================================
 
-target-os            = @TargetOS_CPP@
-target-arch          = @TargetArch_CPP@
-target-platform-full = @TargetPlatformFull@
+target-os             = @TargetOS_CPP@
+target-arch           = @TargetArch_CPP@
+target-platform-full  = @TargetPlatformFull@
+
+host-os               = @HostOS_CPP@
+host-arch             = @HostArch_CPP@
 
-host-os              = @HostOS_CPP@
-host-arch            = @HostArch_CPP@
+cross-compiling       = @CrossCompiling@
 
-cross-compiling      = @CrossCompiling@
+dynamic-extension     = @soext_target@
 
-dynamic-extension    = @soext_target@
+ghc-version           = @GhcVersion@
+ghc-major-version     = @GhcMajVersion@
+ghc-minor-version     = @GhcMinVersion@
+ghc-patch-level       = @GhcPatchLevel@
 
-ghc-major-version    = @GhcMajVersion@
-ghc-minor-version    = @GhcMinVersion@
-ghc-patch-level      = @GhcPatchLevel@
+project-name          = @ProjectName@
+project-version       = @ProjectVersion@
+project-version-int   = @ProjectVersionInt@
+project-patch-level   = @ProjectPatchLevel@
+project-patch-level1  = @ProjectPatchLevel1@
+project-patch-level2  = @ProjectPatchLevel2@
+project-git-commit-id = @ProjectGitCommitId@
 
-project-version      = @ProjectVersion@
-project-version-int  = @ProjectVersionInt@
 
 # Compilation and linking flags:
 #===============================



More information about the ghc-commits mailing list