Skip to content
Snippets Groups Projects
Commit fbc90e09 authored by Cheng Shao's avatar Cheng Shao
Browse files

hadrian: remove unused ghciWithDebugger field from flavour config

This patch removes the ghciWithDebugger field from flavour config
since it's actually not used anywhere.

(cherry picked from commit c6e5fd3d)
parent e4c5c40d
No related branches found
No related tags found
No related merge requests found
...@@ -33,9 +33,6 @@ data Flavour = Flavour { ...@@ -33,9 +33,6 @@ data Flavour = Flavour {
rtsWays :: Ways, rtsWays :: Ways,
-- | Build dynamic GHC programs. -- | Build dynamic GHC programs.
dynamicGhcPrograms :: Action Bool, dynamicGhcPrograms :: Action Bool,
-- | Enable GHCi debugger.
ghciWithDebugger :: Stage -- ^ stage of the /built/ compiler
-> Bool,
-- | Build profiled GHC. -- | Build profiled GHC.
ghcProfiled :: Stage -- ^ stage of the /built/ compiler ghcProfiled :: Stage -- ^ stage of the /built/ compiler
-> Bool, -> Bool,
......
...@@ -29,9 +29,6 @@ data Flavour = Flavour { ...@@ -29,9 +29,6 @@ data Flavour = Flavour {
rtsWays :: Ways, rtsWays :: Ways,
-- | Build dynamic GHC programs. -- | Build dynamic GHC programs.
dynamicGhcPrograms :: Action Bool, dynamicGhcPrograms :: Action Bool,
-- | Enable GHCi debugger.
ghciWithDebugger :: Stage -- ^ stage of the /built/ compiler
-> Bool,
-- | Build profiled GHC. -- | Build profiled GHC.
ghcProfiled :: Stage -- ^ stage of the /built/ compiler ghcProfiled :: Stage -- ^ stage of the /built/ compiler
-> Bool, -> Bool,
......
...@@ -272,7 +272,6 @@ defaultFlavour = Flavour ...@@ -272,7 +272,6 @@ defaultFlavour = Flavour
, libraryWays = defaultLibraryWays , libraryWays = defaultLibraryWays
, rtsWays = defaultRtsWays , rtsWays = defaultRtsWays
, dynamicGhcPrograms = defaultDynamicGhcPrograms , dynamicGhcPrograms = defaultDynamicGhcPrograms
, ghciWithDebugger = const False
, ghcProfiled = const False , ghcProfiled = const False
, ghcDebugged = const False , ghcDebugged = const False
, ghcThreaded = const True , ghcThreaded = const True
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment