在debian上安装ocaml bytes模块?

时间:2015-06-17 09:13:37

标签: debian ocaml liquidsoap

我正在尝试从源代码安装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字节模块..但我不能像谷歌一样态度。我该如何解决这种依赖?

2 个答案:

答案 0 :(得分:1)

对于那些还没有4.02的人:

https://github.com/chambart/ocaml-bytes

答案 1 :(得分:0)

正如@Théo所指出的,Bytes模块是OCaml 4.02.0中的新功能。

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

如果你添加:

module Bytes = String

到您的代码,您可以将其编译。

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