刚刚从 ocaml 开始,并且正在努力使用各种编译器和工具。例如ocamlopt
, ocamlc
, ocamlbuild
,corebuild
等等。那么,如何编译以下内容?
open Core.Std
module Regex = Re2.Regex
let ls pattern =
let pat = Regex.create_exn pattern in
let matcher = Regex.matches pat in
Sys.ls_dir "."
|> List.filter ~f:matcher
|> List.iter ~f:(fun s -> print_string s; print_newline ())
let () =
match In_channel.input_line stdin with
| None -> print_string "No Input"
| Some pat -> ls pat
在utop
我可以#require "re2"
从那里去。
如果不包含正则表达式模块,我只会使用corebuild ls.native
,假设上面的代码放在ls.ml
.
[编辑]
到目前为止已经尝试过
ocamlbuild -use-ocamlfind -package core -package re2
吐出来的
ocamlfind ocamldep -package core -package re2 -modules ls.ml > ls.ml.depends
ocamlfind ocamlc -c -package core -package re2 -o ls.cmo ls.ml
+ ocamlfind ocamlc -c -package core -package re2 -o ls.cmo ls.ml
ocamlfind: Error from package `threads': Missing -thread or -vmthread switch
Command exited with code 2.
所以经过一番谷歌搜索后,我被带到了这个博客,我试过了
ocamlbuild -tag thread -use-ocamlfind -package core -package re2
在失败之前吐出超过 6000 行看起来像make
输出的内容:
collect2: error: ld returned 1 exit status
File "caml_startup", line 1:
Error: Error during linking
Command exited with code 2.
所以我不确定接下来要尝试什么。