blob: 464e0264003a559ca8dbd463ffec906ebc29ff4a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/usr/bin/env bash
# Run in a proper install dune env.
case $1 in
checker)
ocamldebug `ocamlfind query -recursive -i-format coq.checker_printers` -I +threads -I dev _build/default/checker/main.bc
;;
*)
ocamldebug `ocamlfind query -recursive -i-format coq.top_printers` -I +threads -I dev _build/default/topbin/coqtop_byte_bin.bc
;;
esac
|