aboutsummaryrefslogtreecommitdiffhomepage
path: root/toplevel
diff options
context:
space:
mode:
authorGravatar Enrico Tassi <Enrico.Tassi@inria.fr>2016-09-22 21:59:38 +0200
committerGravatar Enrico Tassi <Enrico.Tassi@inria.fr>2016-09-22 21:59:38 +0200
commit20d6c289bff303ec1a4cab3a56431989d0e527d2 (patch)
tree0a481eb21424fb747f3ebc4241e138b34d782be4 /toplevel
parent505ac480574d235cd2f40ca4b2debde0bb875146 (diff)
coqc -o now places .glob file near .vo file
All compilation (by)products are placed where -o specifies. Used to be the case for .vo, .vio, .aux but not .glob
Diffstat (limited to 'toplevel')
-rw-r--r--toplevel/vernac.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/toplevel/vernac.ml b/toplevel/vernac.ml
index de3d14483..55f3a31a3 100644
--- a/toplevel/vernac.ml
+++ b/toplevel/vernac.ml
@@ -345,7 +345,7 @@ let compile verbosely f =
Aux_file.(start_aux_file
~aux_file:(aux_file_name_for long_f_dot_vo)
~v_file:long_f_dot_v);
- Dumpglob.start_dump_glob long_f_dot_v;
+ Dumpglob.start_dump_glob ~vfile:long_f_dot_v ~vofile:long_f_dot_vo;
Dumpglob.dump_string ("F" ^ Names.DirPath.to_string ldir ^ "\n");
if !Flags.xml_export then Hook.get f_xml_start_library ();
let wall_clock1 = Unix.gettimeofday () in