gpt4 book ai didi

haskell - 为什么 TemplateHaskell 会导致 GHC 加载包?

转载 作者:行者123 更新时间:2023-12-04 10:55:00 26 4
gpt4 key购买 nike

我有一个简单的模板 Haskell 程序,它打印当前模块的名称(主要,这里):

{-# LANGUAGE TemplateHaskell #-}
module Main
( main
) where

import Language.Haskell.TH
import Language.Haskell.TH.Syntax

modName ∷ String
modName = $(fmap loc_module qLocation »= λmod → return (LitE (StringL mod) ))

main ∷ IO ()
main = putStrLn modName

当我编译它时,我从 ghc 收到以下加载消息:
tsuraan@localhost ~/test/modname $ ghc --make Main
[1 of 1] Compiling Main ( Main.hs, Main.o )
Loading package ghc-prim ... linking ... done.
Loading package integer-gmp ... linking ... done.
Loading package base ... linking ... done.
Loading package array-0.4.0.0 ... linking ... done.
Loading package deepseq-1.3.0.0 ... linking ... done.
Loading package containers-0.4.2.1 ... linking ... done.
Loading package pretty-1.1.1.0 ... linking ... done.
Loading package template-haskell ... linking ... done.
Linking Main ...

为什么启用 Template Haskell 时 ghc 会加载所有这些包?每当我构建一个使用 Template Haskell 的程序时,尤其是针对大量包构建的程序时,我的编译警告都会被这些多余的“加载”消息所淹没。如果我可以停止打印消息,或者完全停止(不必要的?)模块加载,那就太好了。

最佳答案

模板 Haskell 在编译时通过字节码解释器 (GHCi) 运行。您拥有的任何包依赖项(在编译时)都将在编译时动态加载到 GHC 中,以便您可以执行拼接。

您的依赖项之一是 Template Haskell 库本身,它又依赖于大多数核心内容。

关于haskell - 为什么 TemplateHaskell 会导致 GHC 加载包?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11422407/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com