完整项目位于https://github.com/ysangkok/cabal-profiling-issue
该项目包含由cabal init
. 我现在将粘贴最有趣的源代码片段。
在Main.hs
我有:
newtype Wrapper = Wrapper Int
deriveConvertible ''Wrapper ''Int
在TH.hs
我有:
import Data.Convertible
deriveConvertible :: TH.Name -> TH.Name -> TH.Q [TH.Dec]
deriveConvertible newType otherType = do
Just newCon <- TH.lookupValueName (TH.nameBase newType)
v <- TH.newName "v"
[d|
instance Convertible $(TH.conT newType) $(TH.conT otherType) where
safeConvert $(TH.conP newCon [TH.varP v]) = Right $(TH.varE v)
instance Convertible $(TH.conT otherType) $(TH.conT newType) where
safeConvert source = Right ($(TH.conE newCon) source)
|]
但是,如果我安装profiling: true
并cabal.project
运行cabal build
GHC 8.6.5 和 Cabal 3.4.0.0(使用 ghcup 安装),我会得到:
Failed to load interface for 'Data.Convertible.Base'
Perhaps you haven't installed the profiling libraries for package 'convertible-1.1.1.0'?
代码有什么问题,为什么它在没有分析的情况下编译,但在启用时失败?