blob: 5e9b2aa0259e3e036e3c26d96b7f6a3e21cac5ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
#!/bin/sh
# wrap around ocamldebug for Coq
# export COQTOP=`coqtop -where`
export COQTOP=/home/jc/coq/V7
export COQLIB=$COQTOP
export COQTH=$COQLIB/theories
export CAMLP4LIB=`camlp4 -where`
CAMLBIN=`which ocamlc`
OCAMLDEBUG=`dirname $CAMLBIN`/ocamldebug
args=""
coqdebug="no"
for op in $*
do case `basename $op` in
coq-debug-programs.out)
coqdebug="yes"
args="-is programs.coq";;
coq*) coqdebug="yes";;
esac
done
case $coqdebug in
yes)
exec $OCAMLDEBUG \
-I $CAMLP4LIB \
-I $COQTOP/lib -I $COQTOP/kernel \
-I $COQTOP/library -I $COQTOP/pretyping -I $COQTOP/parsing \
-I $COQTOP/proofs -I $COQTOP/tactics \
-I $COQTOP/toplevel -I $COQTOP/dev \
$* $args;;
*) exec $OCAMLDEBUG $*;;
esac
|