aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/coqc.ml
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/coqc.ml')
-rw-r--r--scripts/coqc.ml7
1 files changed, 5 insertions, 2 deletions
diff --git a/scripts/coqc.ml b/scripts/coqc.ml
index e09ef40e4..673567a85 100644
--- a/scripts/coqc.ml
+++ b/scripts/coqc.ml
@@ -158,10 +158,13 @@ let parse_args () =
| "-unboxed-values" | "-unboxed-definitions" | "-draw-vm-instr"
as o) :: rem ->
parse (cfiles,o::args) rem
+ | "-where" :: _ ->
+ let coqlib =
+ try Sys.getenv "COQLIB" with Not_found -> Coq_config.coqlib
+ in
+ print_endline coqlib; exit 0
| ("-v"|"--version") :: _ ->
Usage.version ()
- | "-where" :: _ ->
- print_endline Coq_config.coqlib; exit 0
| f :: rem ->
if Sys.file_exists f then
parse (f::cfiles,args) rem