4
$ 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。我添加了标志只是为了多余。当我查找文档时,它都是彩色的,但源代码没有链接。我究竟做错了什么?

4

1 回答 1

6

希望我们谈论的是haddock命令行选项--hyperlinked-source(注意超链接ed)。

2.16.1 版不支持该--hyperlinked-source选项。

2.16.2 版确实支持该--hyperlinked-source选项。

您可能必须从 git repo 构建 2.16.2:

https://github.com/haskell/haddock

于 2015-08-26T21:48:56.537 回答