@@ deriving sexp在utop上不起作用

时间:2018-07-10 18:54:55

标签: ocaml utop

我正在utop中运行以下代码:

# type u = { a: int; b: float } [@@deriving sexp];;

但是不会生成s表达式转换器的预期声明。

我已经安装了Core 0.11.0和utop 2.1.0版。

Ocaml的版本为4.06.1。

谢谢。

1 个答案:

答案 0 :(得分:4)

您需要传递-require以便加载ppx。另外(特定于该驱动程序),您需要使用-require sexplib和手册open Sexplib.Std在范围内传递其运行时:

% utop -require ppx_sexp_conv -require sexplib                  
utop # open Sexplib.Std;;
utop # type u = { a: int; b: float } [@@deriving sexp];;
type u = { a : int; b : float; }
val u_of_sexp : Sexplib0.Sexp.t -> u = <fun>
val sexp_of_u : u -> Sexplib0.Sexp.t = <fun>