blob: e9c669b287ed10109b8ac24e7e95eac9ea961b8a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
(lang dune 3.11)
;; Markup.ml uses a lot of tail call recursion to parse XML, so it essentially
;; shits itself when compiled with Jsoo (which doesn't support tail-call by
;; default). So we need this.
;; Obviously, this ought to be removed the instant https://github.com/aantron/markup.ml/issues/26 is merged.
(env
(_
(js_of_ocaml
(flags (:standard --effects=cps))
(build_runtime_flags (:standard --effects=cps)))))
|