2

我正在尝试从源代码安装liquidsoap。在执行 ./configure 脚本时,我看到以下错误:

****** Configuring OCaml-cry

./configure --with-cry-dir=../ocaml-cry/src
configure: WARNING: unrecognized options: --with-cry-dir
configuring ocaml-cry 0.3.0
....
checking for ocamlfind... ocamlfind
checking for ocaml standard library path... /usr/lib/ocaml
checking for caml/threads.h... yes
checking for gcc option to produce PIC... -fPIC
checking for ocaml bytes module... configure: error: Not found.

我试图找到 OCaml 字节模块.. 但我不能,就像在谷歌的态度一样。我该如何解决这种依赖关系?

4

2 回答 2

1

对于那些还没有 4.02 的人:

https://github.com/chambart/ocaml-bytes
于 2015-07-31T23:40:47.900 回答
0

正如@Théo 指出的那样,字节模块是 OCaml 4.02.0 中的新模块。

最初,它主要是 String 模块的同义词。

如果你添加这个:

module Bytes = String

到您的代码中,您可能会对其进行编译。

或者您可以更新到更新的 OCaml 版本。

于 2015-06-17T15:30:41.213 回答