为什么 Cabal 不超链接我的资源?
Why isn't Cabal hyperlinking my sources?
$ cabal --version
cabal-install version 1.22.2.0
using version 1.22.2.0 of the Cabal library
$ cabal install --haddock-hyperlink-source gloss-juicy
Warning: /home/theking/.cabal/config: Unrecognized field hyperlink-source on
line 91
我的配置中确实启用了 hyperlink-source: True
。我添加了标志只是为了多余。当我查找文档时,所有内容都是彩色的,但源代码没有链接。我做错了什么?
希望我们讨论的是 haddock
命令行选项 --hyperlinked-source
(注意超链接ed)。
版本 2.16.1 不支持 --hyperlinked-source
选项。
版本 2.16.2 支持 --hyperlinked-source
选项。
您可能需要从 git 存储库构建 2.16.2:
$ cabal --version
cabal-install version 1.22.2.0
using version 1.22.2.0 of the Cabal library
$ cabal install --haddock-hyperlink-source gloss-juicy
Warning: /home/theking/.cabal/config: Unrecognized field hyperlink-source on
line 91
我的配置中确实启用了 hyperlink-source: True
。我添加了标志只是为了多余。当我查找文档时,所有内容都是彩色的,但源代码没有链接。我做错了什么?
希望我们讨论的是 haddock
命令行选项 --hyperlinked-source
(注意超链接ed)。
版本 2.16.1 不支持 --hyperlinked-source
选项。
版本 2.16.2 支持 --hyperlinked-source
选项。
您可能需要从 git 存储库构建 2.16.2: