0

我现在有什么:

_oasis 文件:

OASISFormat: 0.4
Name:        Count Lines
Version:     0.0.1
Synopsis:    Counts the number of lines in the project
Authors:     Bogdan Nechyporenko
License:     LGPL-2.1 with OCaml linking exception
Executable "count-lines"
  Path:       src
  BuildTools: ocamlbuild
  BuildDepends: str
  MainIs:     main.ml

src/main.ml:

open Str ;;

let endswith s1 s2 =
  let re = Str.regexp (Str.quote s2 ^ "$")
  in
  try ignore (Str.search_forward re s1 0); true
  with Not_found -> false

我正在运行命令来构建它:

ocaml setup.ml -build

其余的只是由 ocaml -setup 生成的文件: 在此处输入图像描述

当我正在构建时,请查看下一个错误: 在此处输入图像描述

4

1 回答 1

1

如果有人对答案感兴趣,在修改您自己的 _oasis 文件后,您需要运行“oasis setup”来进行修改。

愚蠢的我,感谢 IRC #ocaml 聊天中的 Drup !!!

于 2017-05-23T20:48:34.317 回答