[Git][ghc/ghc][wip/T25821] hadrian: Place user options after package arguments
Cheng Shao pushed to branch wip/T25821 at Glasgow Haskell Compiler / GHC Commits: b650f962 by Ben Gamari at 2025-11-29T00:05:20+01:00 hadrian: Place user options after package arguments This makes it easier for the user to override the default package arguments with `UserSettings.hs`. Fixes #25821. ------------------------- Metric Decrease: T14697 ------------------------- - - - - - 1 changed file: - hadrian/src/Settings.hs Changes: ===================================== hadrian/src/Settings.hs ===================================== @@ -35,7 +35,7 @@ getExtraArgs :: Args getExtraArgs = expr flavour >>= extraArgs getArgs :: Args -getArgs = mconcat [ defaultBuilderArgs, getExtraArgs, defaultPackageArgs ] +getArgs = mconcat [ defaultBuilderArgs, defaultPackageArgs, getExtraArgs ] getLibraryWays :: Ways getLibraryWays = expr flavour >>= libraryWays View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/b650f96252e2fc18248def9b84904393... -- View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/b650f96252e2fc18248def9b84904393... You're receiving this email because of your account on gitlab.haskell.org.
participants (1)
-
Cheng Shao (@TerrorJack)