Marge Bot pushed to branch master at Glasgow Haskell Compiler / GHC
Commits:
-
2c57de29
by Cheng Shao at 2026-03-20T12:29:55-04:00
1 changed file:
Changes:
| 1 | 1 | module Settings.Flavours.GhcInGhci (ghcInGhciFlavour) where
|
| 2 | 2 | |
| 3 | +import qualified Data.Set as Set
|
|
| 3 | 4 | import Expression
|
| 4 | 5 | import Flavour
|
| 6 | +import Oracles.Flag
|
|
| 5 | 7 | import {-# SOURCE #-} Settings.Default
|
| 6 | 8 | |
| 7 | 9 | -- Please update doc/flavours.md when changing this file.
|
| 8 | 10 | ghcInGhciFlavour :: Flavour
|
| 9 | 11 | ghcInGhciFlavour = disableProfiledLibs $ defaultFlavour
|
| 10 | 12 | { name = "ghc-in-ghci"
|
| 11 | - , extraArgs = ghciArgs
|
|
| 13 | + , extraArgs = ghciArgs
|
|
| 14 | + , libraryWays =
|
|
| 15 | + Set.fromList
|
|
| 16 | + <$> mconcat
|
|
| 17 | + [ pure [vanilla]
|
|
| 18 | + , platformSupportsSharedLibs ? pure [dynamic]
|
|
| 19 | + ]
|
|
| 12 | 20 | }
|
| 13 | 21 | |
| 14 | 22 | ghciArgs :: Args
|