我正在尝试使用GHC API动态编译和加载Haskell模块。我理解API从一个版本到另一个版本的波动很大,所以我特别谈到GHC 7.6。*。
我尝试在MacOS和Linux上运行相同的代码。在这两种情况下,插件模块都可以正常编译,但在加载时会出现以下错误:Cannot add module Plugin to context: not interpreted
问题类似于this中的问题,如果模块是在主机程序的同一次运行中编译的,那么模块只会加载。
-- Host.hs: compile with ghc-7.6.*
-- $ ghc -package ghc -package ghc-paths Host.hs
-- Needs Plugin.hs in the same directory.
module Main where
import GHC
import GHC.Paths ( libdir )
import DynFlags
import Unsafe.Coerce
main :: IO ()
main =
defaultErrorHandler defaultFatalMessager defaultFlushOut $ do
result <- runGhc (Just libdir) $ do
dflags <- getSessionDynFlags
setSessionDynFlags dflags
target <- guessTarget "Plugin.hs" Nothing
setTargets [target]
r <- load LoadAllTargets
case r of
Failed -> error "Compilation failed"
Succeeded -> do
setContext [IIModule (mkModuleName "Plugin")]
result <- compileExpr ("Plugin.getInt")
let result' = unsafeCoerce result :: Int
return result'
print result
插件:
-- Plugin.hs
module Plugin where
getInt :: Int
getInt = 33
答案 0 :(得分:14)
问题是你正在使用IIModule
。这表示您希望将模块及其中的所有内容(包括未导出的内容)放入上下文中。它与GHCi中带星号的:load
基本相同。正如您所注意到的,这仅适用于解释代码,因为它让您“查看”模块。
但这不是你需要的。您想要的是加载它,就像使用:module
或import
声明一样,它适用于已编译的模块。为此,您使用IIDecl
,其中包含您可以使用simpleImportDecl
创建的导入声明:
setContext [IIDecl $ simpleImportDecl (mkModuleName "Plugin")]