aboutsummaryrefslogtreecommitdiff
path: root/dev
diff options
context:
space:
mode:
authorEmilio Jesus Gallego Arias2019-04-21 18:16:34 +0200
committerEmilio Jesus Gallego Arias2019-06-17 14:14:19 +0200
commitf903082b7224f0fd2263f70df8e393aff88f6b1c (patch)
tree9c1300a2e995b900773e8f046f345172a079a0d2 /dev
parent535d897ed25f37d454b119a3873a2ff232d3f46e (diff)
[dune] Support for coqide as an ocamldebug target.
Works fine here, cc: #9975
Diffstat (limited to 'dev')
-rw-r--r--dev/dune1
-rwxr-xr-xdev/dune-dbg.in3
2 files changed, 4 insertions, 0 deletions
diff --git a/dev/dune b/dev/dune
index ffa885a008..11e42f97f3 100644
--- a/dev/dune
+++ b/dev/dune
@@ -12,6 +12,7 @@
(deps dune-dbg.in
../checker/coqchk.bc
../topbin/coqc_bin.bc
+ ../ide/coqide_main.bc
; This is not enough as the call to `ocamlfind` will fail :/
top_printers.cma)
(action (copy dune-dbg.in dune-dbg)))
diff --git a/dev/dune-dbg.in b/dev/dune-dbg.in
index bd0a837938..1382f4d1b6 100755
--- a/dev/dune-dbg.in
+++ b/dev/dune-dbg.in
@@ -6,6 +6,9 @@ case $1 in
shift
exe=_build/default/checker/coqchk.bc
;;
+ coqide)
+ exe=_build/default/ide/coqide_main.bc
+ ;;
*)
exe=_build/default/topbin/coqc_bin.bc
;;