summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlp Mestanogullari <alpmestan@gmail.com>2019-06-14 11:57:38 +0200
committerMarge Bot <ben+marge-bot@smart-cactus.org>2019-06-14 23:10:46 -0400
commit257165b47298644d67d39b6f5b565b65fe840f50 (patch)
treeebf6875bc0aade3cd60a519c23356a43b47ddc52
parent5c97211cf21d2eb99db1a5cf473a630ffe245064 (diff)
downloadhaskell-257165b47298644d67d39b6f5b565b65fe840f50.tar.gz
Remove duplicates from 'ghc --info' output
-rw-r--r--compiler/main/DynFlags.hs5
1 files changed, 0 insertions, 5 deletions
diff --git a/compiler/main/DynFlags.hs b/compiler/main/DynFlags.hs
index 805cdcef07..76b5be6573 100644
--- a/compiler/main/DynFlags.hs
+++ b/compiler/main/DynFlags.hs
@@ -5664,10 +5664,6 @@ compilerInfo dflags
("Have interpreter", showBool $ platformMisc_ghcWithInterpreter $ platformMisc dflags),
("Object splitting supported", showBool False),
("Have native code generator", showBool $ platformMisc_ghcWithNativeCodeGen $ platformMisc dflags),
- ("Support SMP", showBool $ platformMisc_ghcWithSMP $ platformMisc dflags),
- ("Tables next to code", showBool $ platformMisc_tablesNextToCode $ platformMisc dflags),
- ("RTS ways", platformMisc_ghcRTSWays $ platformMisc dflags),
- ("RTS expects libdw", showBool $ platformMisc_ghcRtsWithLibdw $ platformMisc dflags),
-- Whether or not we support @-dynamic-too@
("Support dynamic-too", showBool $ not isWindows),
-- Whether or not we support the @-j@ flag with @--make@.
@@ -5694,7 +5690,6 @@ compilerInfo dflags
("GHC Dynamic", showBool dynamicGhc),
-- Whether or not GHC was compiled using -prof
("GHC Profiled", showBool rtsIsProfiled),
- ("Leading underscore", showBool $ platformMisc_leadingUnderscore $ platformMisc dflags),
("Debug on", show debugIsOn),
("LibDir", topDir dflags),
-- The path of the global package database used by GHC