IntelliJ Haskell 插件:ghc-modi 因错误而失败
IntelliJ Haskell plugin: ghc-modi failed with error
我刚刚安装了 IntelliJ idea 和官方 Haskell 插件。
IntelliJ找不到ghc-modi.exe,所以我通过cabal安装了ghc-mod。
然而,在导入我的 cabal 项目后,我仍然收到以下错误:
ghc-modi failed with error: NG BUG: GMECabalFlags (GMEString "extractField: failed extracting configFlags from input, input contained `configFlags'? False")
如何解决或获取有关此错误的更多信息?
提前致谢。
Atsky 在 GitHub 上回答了这个问题:
This is internal problem of ghc-mod. It fails to read file dist/setup-config
for some reason.
Try to remove dist
folder from your project and then run cabal config
.
我刚刚安装了 IntelliJ idea 和官方 Haskell 插件。 IntelliJ找不到ghc-modi.exe,所以我通过cabal安装了ghc-mod。
然而,在导入我的 cabal 项目后,我仍然收到以下错误:
ghc-modi failed with error: NG BUG: GMECabalFlags (GMEString "extractField: failed extracting configFlags from input, input contained `configFlags'? False")
如何解决或获取有关此错误的更多信息?
提前致谢。
Atsky 在 GitHub 上回答了这个问题:
This is internal problem of ghc-mod. It fails to read file
dist/setup-config
for some reason. Try to removedist
folder from your project and then runcabal config
.