4

我正在尝试将 jbuilderppx_derivingppx_deriving_yojson特别是)一起使用,但现在卡住了一个多小时。我目前的方法是一个jbuild文件,其中包含以下内容:

(jbuild_version 1)
(executables
((names (my-binary))
(libraries
 (ppx_deriving
  ppx_deriving_yojson
  cohttp
  yojson))
(preprocess (pps (ppx_deriving_yojson ppx_driver.runner)))))

但这导致

Command [5] exited with code 1:
$ (cd _build/default && ../.ppx/default/ppx_deriving_yojson+ppx_driver.runner/ppx.exe --dump-ast -o src/my_file.pp.ml --impl src/my_file.ml)
File "src/my_file.ml", line 16, characters 5-13:
Error: Attribute `deriving' was not used

手动运行生成ppx_driver的输出为空,所以我显然遗漏了一些东西。_build/.ppx/default/ppx_deriving_yojson+ppx_driver.runner/ppx.exe-print-transformations

topkg只需包含ppx_derivingppx_deriving_yojson作为依赖项,代码就可以很好地构建。

4

1 回答 1

2

从 ppx_deriving_yojson 的更新版本开始,这应该是可能的。

代码:

type t = {x: int; y: int} [@@deriving to_yojson]

let () = print_endline (Yojson.Safe.to_string (to_yojson {x= 1; y= 2}))

和一个示例jbuild文件:

(jbuild_version 1)

(executables
 ((names (main))
  (preprocess (pps (ppx_deriving_yojson)))
  (libraries (ppx_deriving_yojson.runtime))))

(install
 ((section bin)
  (files ((main.exe as main)))))
于 2018-01-16T22:14:30.220 回答