diff options
| author | notin | 2008-11-13 17:12:27 +0000 |
|---|---|---|
| committer | notin | 2008-11-13 17:12:27 +0000 |
| commit | 8d41b4a80e6b1a944772a435e2a8eb54adc3048c (patch) | |
| tree | f9d8c36707503fc7bdd009f6f9f49bb81dd7eeb9 /scripts | |
| parent | 6c79471f2d1f358b51ba367b094d4b01486a490c (diff) | |
Tentative d'amélioration de la robustesse des Makefile générés par
coq_makefile en présence de fichiers .ml :
- ajout d'une option -config à coqtop qui affiche les informations
de configuration (COQTOP, COQBIN, COQLIB, CAMLP4, CAMLP4LIB, CAMLBIN,
LOCAL)
- coq_makefile inclut un fichier Makefile.config qui contient les
valeurs des variables sus-mentionnées
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@11584 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/coqc.ml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/coqc.ml b/scripts/coqc.ml index e661455cac..aa09219bf7 100644 --- a/scripts/coqc.ml +++ b/scripts/coqc.ml @@ -164,6 +164,9 @@ let parse_args () = try Sys.getenv "COQLIB" with Not_found -> Coq_config.coqlib in print_endline coqlib; exit 0 + + | ("-config" | "--config") :: _ -> Usage.print_config (); exit 0 + | ("-v"|"--version") :: _ -> Usage.version () | f :: rem -> |
