diff options
| author | herbelin | 2007-04-29 11:46:51 +0000 |
|---|---|---|
| committer | herbelin | 2007-04-29 11:46:51 +0000 |
| commit | 876d22a01cc9f62436dec92d837ccbeecbef674e (patch) | |
| tree | c16b60397c27bece29f2b1b9808c0dc0085d5269 /scripts | |
| parent | 10648acd7c8c4db1de25c785db4d192eaf2638e6 (diff) | |
Plus d'option -v8 dans coqmktop
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@9813 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/coqmktop.ml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/scripts/coqmktop.ml b/scripts/coqmktop.ml index 9cdcf9ee91..3654350561 100644 --- a/scripts/coqmktop.ml +++ b/scripts/coqmktop.ml @@ -139,8 +139,7 @@ Options are: -top Build Coq on a ocaml toplevel (incompatible with -opt) -searchisos Build a toplevel for SearchIsos -ide Build a toplevel for the Coq IDE - -R dir Specify recursively directories for Ocaml - -v8 Link with V8 grammar\n"; + -R dir Specify recursively directories for Ocaml\n"; exit 1 (* parsing of the command line *) @@ -154,7 +153,9 @@ let parse_args () = | "-top" :: rem -> top := true ; parse (op,fl) rem | "-ide" :: rem -> coqide := true; parse (op,fl) rem - | "-v8" :: rem -> parse (op,fl) rem + | "-v8" :: rem -> + Printf.eprintf "warning: option -v8 deprecated"; + parse (op,fl) rem | "-echo" :: rem -> echo := true ; parse (op,fl) rem | ("-cclib"|"-ccopt"|"-I"|"-o"|"-w" as o) :: rem' -> begin |
