diff options
author | Matthew Pickering <matthewtpickering@gmail.com> | 2022-09-13 18:02:11 +0100 |
---|---|---|
committer | Matthew Pickering <matthewtpickering@gmail.com> | 2022-09-13 18:02:11 +0100 |
commit | 112e9b37117a7c3d7ac291bea9496b01792c8aa2 (patch) | |
tree | 2864dcf2e974cb286560fc4ddc9f76fc725e62df /hadrian/src/Oracles/ModuleFiles.hs | |
parent | ca739b9cb6ef698b56bebca7be2d44cbb7a62f85 (diff) | |
download | haskell-wip/inplace-final.tar.gz |
hadrian: Add extra implicit dependencies from DeriveLiftwip/inplace-final
ghc -M should know that modules which use DeriveLift (or
TemplateHaskellQuotes) need TH.Lib.Internal but until it does, we have
to add these extra edges manually or the modules will be compiled before
TH.Lib.Internal is compiled which leads to a desugarer error.
Diffstat (limited to 'hadrian/src/Oracles/ModuleFiles.hs')
-rw-r--r-- | hadrian/src/Oracles/ModuleFiles.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hadrian/src/Oracles/ModuleFiles.hs b/hadrian/src/Oracles/ModuleFiles.hs index b53a5901e1..41a3141f65 100644 --- a/hadrian/src/Oracles/ModuleFiles.hs +++ b/hadrian/src/Oracles/ModuleFiles.hs @@ -2,7 +2,7 @@ module Oracles.ModuleFiles ( decodeModule, encodeModule, findGenerator, hsSources, hsObjects, determineBuilder, - moduleFilesOracle + moduleFilesOracle, moduleSource ) where import qualified Data.HashMap.Strict as Map |