From 7d233b8cc75e965e706e273c068e58eed130aa83 Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Mon, 20 Dec 2010 17:35:20 +0000 Subject: [PATCH] Add gcc and ld flags to --info output --- compiler/main/DynFlags.hs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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)) ] -- 1.7.10.4