From: Ian Lynagh Date: Mon, 20 Dec 2010 17:35:20 +0000 (+0000) Subject: Add gcc and ld flags to --info output X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=7d233b8cc75e965e706e273c068e58eed130aa83 Add gcc and ld flags to --info output --- diff --git a/compiler/main/DynFlags.hs b/compiler/main/DynFlags.hs index 6167980..7d77fb5 100644 --- a/compiler/main/DynFlags.hs +++ b/compiler/main/DynFlags.hs @@ -2296,6 +2296,8 @@ compilerInfo = [("Project name", String cProjectName), ("Leading underscore", String cLeadingUnderscore), ("Debug on", String (show debugIsOn)), ("LibDir", FromDynFlags topDir), - ("Global Package DB", FromDynFlags systemPackageConfig) + ("Global Package DB", FromDynFlags systemPackageConfig), + ("C compiler flags", String (show cCcOpts)), + ("Linker flags", String (show cLdOpts)) ]