From 0832467f0b4445f7b4c5f8e9ab417e585362ed9c Mon Sep 17 00:00:00 2001 From: herbelin Date: Fri, 24 Nov 2000 19:59:08 +0000 Subject: Paramètrage de ocamldebug-v7 par configure à partir d'un 'template' git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@949 85f007b7-540e-0410-9357-904b9bb8a0f7 --- dev/ocamldebug-v7 | 35 ----------------------------------- dev/ocamldebug-v7.template | 34 ++++++++++++++++++++++++++++++++++ 2 files changed, 34 insertions(+), 35 deletions(-) delete mode 100755 dev/ocamldebug-v7 create mode 100644 dev/ocamldebug-v7.template (limited to 'dev') diff --git a/dev/ocamldebug-v7 b/dev/ocamldebug-v7 deleted file mode 100755 index 4d8e3092ac..0000000000 --- a/dev/ocamldebug-v7 +++ /dev/null @@ -1,35 +0,0 @@ -#!/bin/sh - -# wrap around ocamldebug for Coq - -# export COQTOP=`coqtop -where` -export COQTOP=$HOME/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 \ - -I $COQTOP/contrib/omega -I $COQTOP/contrib/ring \ - $* $args;; - *) exec $OCAMLDEBUG $*;; -esac diff --git a/dev/ocamldebug-v7.template b/dev/ocamldebug-v7.template new file mode 100644 index 0000000000..362f63b9e8 --- /dev/null +++ b/dev/ocamldebug-v7.template @@ -0,0 +1,34 @@ +#!/bin/sh + +# wrap around ocamldebug for Coq + +export COQTOP=COQTOPDIRECTORY +export COQLIB=COQLIBDIRECTORY +export COQTH=$COQLIB/theories +export CAMLP4LIB=CAMLP4LIBDIRECTORY +CAMLBIN=CAMLBINDIRECTORY +OCAMLDEBUG=$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 \ + -I $COQTOP/contrib/omega -I $COQTOP/contrib/ring \ + $* $args;; + *) exec $OCAMLDEBUG $*;; +esac -- cgit v1.2.3