From: Ian Lynagh Date: Fri, 6 Jun 2008 18:44:15 +0000 (+0000) Subject: Show whether DEBUG is on in ghc --info X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=aca3dd74dac482e77e34058c4003df5387487aaa Show whether DEBUG is on in ghc --info --- diff --git a/compiler/main/DynFlags.hs b/compiler/main/DynFlags.hs index dbf5ff9..621d6b9 100644 --- a/compiler/main/DynFlags.hs +++ b/compiler/main/DynFlags.hs @@ -1863,5 +1863,7 @@ compilerInfo = [("Project name", cProjectName), ("Tables next to code", cGhcEnableTablesNextToCode), ("Win32 DLLs", cEnableWin32DLLs), ("RTS ways", cGhcRTSWays), - ("Leading underscore", cLeadingUnderscore)] + ("Leading underscore", cLeadingUnderscore), + ("Debug on", show debugIsOn) + ]