File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
session-loader/Development/IDE Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ package *
50
50
51
51
write-ghc-environment-files : never
52
52
53
- index-state : 2023-01-27T00 :00 :00Z
53
+ index-state : 2023-03-15T00 :00 :00Z
54
54
55
55
constraints :
56
56
-- For GHC 9.4, older versions of entropy fail to build on Windows
Original file line number Diff line number Diff line change @@ -103,7 +103,7 @@ library
103
103
ghc-check >= 0.5.0.8 ,
104
104
ghc-paths,
105
105
cryptohash-sha1 >= 0.11.100 && < 0.12 ,
106
- hie-bios ^ >= 0.11 .0 ,
106
+ hie-bios == 0.12 .0 ,
107
107
-- implicit-hie 0.1.3.0 introduced an unexpected behavioral change.
108
108
-- https://github.com/Avi-D-coder/implicit-hie/issues/50
109
109
-- to make sure ghcide behaves in a desirable way, we put implicit-hie
Original file line number Diff line number Diff line change @@ -262,7 +262,7 @@ getInitialGhcLibDirDefault recorder rootDir = do
262
262
let log = logWith recorder
263
263
hieYaml <- findCradle def rootDir
264
264
cradle <- loadCradle def hieYaml rootDir
265
- libDirRes <- getRuntimeGhcLibDir cradle
265
+ libDirRes <- getRuntimeGhcLibDir (toCologActionWithPrio (cmapWithPrio LogHieBios recorder)) cradle
266
266
case libDirRes of
267
267
CradleSuccess libdir -> pure $ Just $ LibDir libdir
268
268
CradleFail err -> do
@@ -725,7 +725,7 @@ cradleToOptsAndLibDir recorder cradle file = do
725
725
case cradleRes of
726
726
CradleSuccess r -> do
727
727
-- Now get the GHC lib dir
728
- libDirRes <- getRuntimeGhcLibDir cradle
728
+ libDirRes <- getRuntimeGhcLibDir (toCologActionWithPrio (cmapWithPrio LogHieBios recorder)) cradle
729
729
case libDirRes of
730
730
-- This is the successful path
731
731
CradleSuccess libDir -> pure (Right (r, libDir))
You can’t perform that action at this time.
0 commit comments