13 lines
429 B
Text
13 lines
429 B
Text
(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)))))
|