我遇到ghc-mod
的问题,导致我无法对yesod
应用项目中的某些文件使用ide。
我按如下方式安装模板应用程序:
/tmp$ stack new demo yesod-sqlite && cd demo
/tmp/demo$ stack setup && stack build && stack install ghc-mod
以下stack.yaml
(删除了注释行)产生的结果:
resolver: lts-5.6
packages:
- '.'
extra-deps: []
flags: {}
extra-package-dbs: []
这是demo.cabal
:http://pastebin.com/i4n1TR6W。
然后,运行stack exec -- ghc-mod check app/main.hs
不会产生错误,但stack exec -- ghc-mod check app/devel.hs
有这样的说法:
app/devel.hs:2:1:Failed to load interface for ‘Application’It is a member of the hidden package ‘demo-0.0.0’.Perhaps you need to add ‘demo’ to the build-depends in your .cabal file.
所以ghc-mod
不知何故认为这个包本身就隐藏了?但是,由另一个项目的文件导入的任何其他地方检查都很好,并且应用程序构建并成功运行。有关此文件的唯一细节是使用PackageImports
语言扩展名:
{-# LANGUAGE PackageImports #-}
import "demo" Application (develMain)
我尝试使用Google搜索错误消息,但它似乎只是针对外部软件包而不是正在调试的软件包。
答案 0 :(得分:1)
这两个文件devel.hs
和DevelMain.hs
非常特别:它们在demo
中被标记为.cabal
的模块,但它们正在导入demo
编译包,即递归依赖。
它们不会从库demo
公开,也不会在其他任何地方导入,因此在运行stack build
时不会编译,但是当您对它们运行ghc-mod check
时,它们会在当前项目的上下文,因此递归依赖将是一个问题。
这两个无意义的文件的唯一目的是在ghci中调试您的yesod网站,正如DevelMain.hs
中的评论所述:
-- | Running your app inside GHCi.
--
-- To start up GHCi for usage with Yesod, first make sure you are in dev mode:
--
-- > cabal configure -fdev
--
-- Note that @yesod devel@ automatically sets the dev flag.
-- Now launch the repl:
--
-- > cabal repl --ghc-options="-O0 -fobject-code"
--
-- To start your app, run:
--
-- > :l DevelMain
-- > DevelMain.update
--
-- You can also call @DevelMain.shutdown@ to stop the app
--
-- You will need to add the foreign-store package to your .cabal file.
-- It is very light-weight.
--
-- If you don't use cabal repl, you will need
-- to run the following in GHCi or to add it to
-- your .ghci file.
--
-- :set -DDEVELOPMENT
--
-- There is more information about this approach,
-- on the wiki: https://github.com/yesodweb/yesod/wiki/ghci
cabal repl
和stack ghci
会事先编译项目,因此这两个文件不会导致任何错误。