Unable to build using Ocamlbuild

268 views Asked by At

I'm trying to build an OCaml project using ocaml build command which looks similar to

ocamlbuild -use-ocamlfind test.byte

Following error is observed.

Error: Unbound value String.lowercase_ascii. I have install Clang and i am using OCaml 4.07.0

1

There are 1 answers

1
octachron On

The function String.lowercase_ascii was introduced in OCaml 4.03. You should check that you are really using OCaml 4.07 and not an earlier version.