summaryrefslogtreecommitdiff
path: root/hadrian
diff options
context:
space:
mode:
Diffstat (limited to 'hadrian')
-rw-r--r--hadrian/build.cabal.bat2
-rwxr-xr-xhadrian/build.cabal.sh2
-rw-r--r--hadrian/src/Settings/Flavours/Development.hs5
3 files changed, 3 insertions, 6 deletions
diff --git a/hadrian/build.cabal.bat b/hadrian/build.cabal.bat
index aa0acab4e4..3344791bc8 100644
--- a/hadrian/build.cabal.bat
+++ b/hadrian/build.cabal.bat
@@ -1,6 +1,6 @@
@echo off
set CABAL=cabal
-set CABFLAGS=--disable-documentation --disable-profiling --disable-library-profiling
+set CABFLAGS=--disable-documentation --disable-profiling
rem It is currently more robust to pass Cabal an absolute path to the project file.
set PROJ="%CD%/hadrian/cabal.project"
diff --git a/hadrian/build.cabal.sh b/hadrian/build.cabal.sh
index 13ef927f8e..f28c3e0d14 100755
--- a/hadrian/build.cabal.sh
+++ b/hadrian/build.cabal.sh
@@ -1,7 +1,7 @@
#!/usr/bin/env bash
CABAL=cabal
-CABFLAGS="--disable-documentation --disable-profiling --disable-library-profiling"
+CABFLAGS="--disable-documentation --disable-profiling"
# It is currently more robust to pass Cabal an absolute path to the project file.
PROJ="$PWD/hadrian/cabal.project"
diff --git a/hadrian/src/Settings/Flavours/Development.hs b/hadrian/src/Settings/Flavours/Development.hs
index 9ad4b6b365..5919026cb0 100644
--- a/hadrian/src/Settings/Flavours/Development.hs
+++ b/hadrian/src/Settings/Flavours/Development.hs
@@ -8,10 +8,7 @@ import {-# SOURCE #-} Settings.Default
developmentFlavour :: Stage -> Flavour
developmentFlavour ghcStage = defaultFlavour
{ name = "devel" ++ show (fromEnum ghcStage)
- , args = defaultBuilderArgs <> developmentArgs ghcStage <> defaultPackageArgs
- , libraryWays = pure [vanilla]
- , rtsWays = pure [vanilla, threaded]
- , dynamicGhcPrograms = return False }
+ , args = defaultBuilderArgs <> developmentArgs ghcStage <> defaultPackageArgs }
developmentArgs :: Stage -> Args
developmentArgs ghcStage = do