summaryrefslogtreecommitdiff
path: root/compiler
diff options
context:
space:
mode:
authorSimon Marlow <marlowsd@gmail.com>2010-06-02 08:22:33 +0000
committerSimon Marlow <marlowsd@gmail.com>2010-06-02 08:22:33 +0000
commit5a73f108480a0b443c74f93fafa2f5495e788643 (patch)
tree876484b60c8517f5076771723a05b85061d16ccc /compiler
parentd6d7fe4976d4265dbfd6b1ad048339b8ff8f9120 (diff)
downloadhaskell-5a73f108480a0b443c74f93fafa2f5495e788643.tar.gz
Add the global package DB to ghc --info (#4103)
Diffstat (limited to 'compiler')
-rw-r--r--compiler/main/DynFlags.hs3
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/main/DynFlags.hs b/compiler/main/DynFlags.hs
index 86590db640..1f83d29c34 100644
--- a/compiler/main/DynFlags.hs
+++ b/compiler/main/DynFlags.hs
@@ -2191,6 +2191,7 @@ compilerInfo = [("Project name", String cProjectName),
("RTS ways", String cGhcRTSWays),
("Leading underscore", String cLeadingUnderscore),
("Debug on", String (show debugIsOn)),
- ("LibDir", FromDynFlags topDir)
+ ("LibDir", FromDynFlags topDir),
+ ("Global Package DB", FromDynFlags systemPackageConfig)
]