From: Simon Marlow Date: Wed, 2 Jun 2010 08:22:33 +0000 (+0000) Subject: Add the global package DB to ghc --info (#4103) X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=5a73f108480a0b443c74f93fafa2f5495e788643;p=ghc-hetmet.git Add the global package DB to ghc --info (#4103) --- diff --git a/compiler/main/DynFlags.hs b/compiler/main/DynFlags.hs index 86590db..1f83d29 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) ]