我正在尝试安装ocamlgraph作为frama-c的要求。当我安装ocamlgraph并运行make时,我收到以下编译错误:
ocamlopt.opt -c -I src -I lib -for-pack Graph src/delaunay.ml
/tmp/camlasmc2c286.s: Assembler messages:
/tmp/camlasmc2c286.s: Error: .size expression for camlGraph__Delaunay__ccw_291 does not evaluate to a constant
/tmp/camlasmc2c286.s: Error: .size expression for camlGraph__Delaunay__in_circle_298 does not evaluate to a constant
File "src/delaunay.ml", line 1, characters 0-1:
Error: Assembler error, input left in file /tmp/camlasmc2c286.s
我在Ubuntu-10.04上运行并尝试了ocamlgraph-1.6和ocamlgraph-1.8.2版本,但错误相同。我机器上的ocaml版本是ocaml-3.11.2。
由于
答案 0 :(得分:3)
这是a bug去年因binutils
版本更改而引发的。您可以通过在系统上安装旧版本的binutils(不推荐)或更新版本的OCaml(从ocaml 3.12.1开始)来修复它。