We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 538e1f1 commit 79f5feeCopy full SHA for 79f5fee
ghcide/session-loader/Development/IDE/Session.hs
@@ -527,7 +527,8 @@ emptyHscEnv :: IORef NameCache -> FilePath -> IO HscEnv
527
emptyHscEnv nc libDir = do
528
env <- runGhc (Just libDir) getSession
529
#if !MIN_VERSION_ghc(9,0,0)
530
- -- This causes ghc9 to crash
+ -- This causes ghc9 to crash with the error:
531
+ -- Couldn't find a target code interpreter. Try with -fexternal-interpreter
532
initDynLinker env
533
#endif
534
pure $ setNameCache nc env{ hsc_dflags = (hsc_dflags env){useUnicode = True } }
0 commit comments