diff options
| author | Pierre-Marie Pédrot | 2015-09-24 19:13:30 +0200 |
|---|---|---|
| committer | Pierre-Marie Pédrot | 2015-09-25 11:19:08 +0200 |
| commit | 3930c586507bfb3b80297d7a2fdbbc6049aa509b (patch) | |
| tree | d6fa4c001548134886554e660c6eb58df3ef8020 /tools | |
| parent | b6725a2d0077239e51385a62a526ab9465eea26d (diff) | |
Updating the documentation and the toolchain w.r.t. the change in -compile.
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/coqc.ml | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/tools/coqc.ml b/tools/coqc.ml index 5710b97f2a..e7239da682 100644 --- a/tools/coqc.ml +++ b/tools/coqc.ml @@ -30,13 +30,8 @@ let verbose = ref false let rec make_compilation_args = function | [] -> [] | file :: fl -> - let file_noext = - if Filename.check_suffix file ".v" then - Filename.chop_suffix file ".v" - else file - in (if !verbose then "-compile-verbose" else "-compile") - :: file_noext :: (make_compilation_args fl) + :: file :: (make_compilation_args fl) (* compilation of files [files] with command [command] and args [args] *) |
