Teo Camarasu pushed to branch wip/T24624 at Glasgow Haskell Compiler / GHC Commits: 9322ebc0 by Teo Camarasu at 2026-05-01T20:05:08+01:00 wip - - - - - 2 changed files: - compiler/GHC/Core.hs - hadrian/src/Settings/Builders/Ghc.hs Changes: ===================================== compiler/GHC/Core.hs ===================================== @@ -5,6 +5,7 @@ {-# LANGUAGE NoPolyKinds #-} {-# LANGUAGE LambdaCase #-} +{-# LANGUAGE TemplateHaskell #-} -- | GHC.Core holds all the main data types for use by for the Glasgow Haskell Compiler midsection module GHC.Core ( @@ -2704,3 +2705,5 @@ collectNAnnBndrs orig_n e collect 0 bs body = (reverse bs, body) collect n bs (_, AnnLam b body) = collect (n-1) (b:bs) body collect _ _ _ = pprPanic "collectNBinders" $ int orig_n + +$(pure []) ===================================== hadrian/src/Settings/Builders/Ghc.hs ===================================== @@ -56,6 +56,7 @@ compileAndLinkHs = (builder (Ghc CompileHs) ||^ builder (Ghc LinkHs)) ? do ] , commonGhcArgs , ghcLinkArgs + , stage1 ? package compiler ? builder (Ghc CompileHs) ? mconcat [arg "-fexternal-interpreter"] , defaultGhcWarningsArgs , builder (Ghc CompileHs) ? arg "-c" , hieFiles stage ? builder (Ghc CompileHs) ? mconcat View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/9322ebc0d524820bee67cda30a12548f... -- View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/9322ebc0d524820bee67cda30a12548f... You're receiving this email because of your account on gitlab.haskell.org.
participants (1)
-
Teo Camarasu (@teo)