summaryrefslogtreecommitdiff
path: root/driver/main.ml
diff options
context:
space:
mode:
authorValentin Gatien-Baron <valentin.gatienbaron@gmail.com>2018-07-15 15:00:47 -0400
committerValentin Gatien-Baron <valentin.gatienbaron@gmail.com>2018-07-15 15:00:47 -0400
commit0444eac687ef803a63f39081039784f33bc535eb (patch)
treebd4638705d3e1c59c3a9102339650490db038ae1 /driver/main.ml
parent47eeff4bac81e710489147bbff41d23d38d4d5c2 (diff)
downloadocaml-0444eac687ef803a63f39081039784f33bc535eb.tar.gz
Print warnings on the warnings formatter in the couple of places that don't
Except the OCAMLPARAM stuff, as that runs before the command line warning settings are even parsed, so while they are reported using the normal warnings code, they don't look like normal warnings.
Diffstat (limited to 'driver/main.ml')
-rw-r--r--driver/main.ml9
1 files changed, 4 insertions, 5 deletions
diff --git a/driver/main.ml b/driver/main.ml
index a9a7e1650a..e9567a46f4 100644
--- a/driver/main.ml
+++ b/driver/main.ml
@@ -134,7 +134,7 @@ let main () =
try
readenv ppf Before_args;
Clflags.parse_arguments anonymous usage;
- Compmisc.read_color_env ppf;
+ Compmisc.read_color_env ();
begin try
Compenv.process_deferred_actions
(ppf,
@@ -162,8 +162,7 @@ let main () =
if !make_archive then begin
Compmisc.init_path false;
- Bytelibrarian.create_archive ppf
- (Compenv.get_objfiles ~with_ocamlparam:false)
+ Bytelibrarian.create_archive (Compenv.get_objfiles ~with_ocamlparam:false)
(extract_output !output_name);
Warnings.check_fatal ();
end
@@ -171,7 +170,7 @@ let main () =
Compmisc.init_path false;
let extracted_output = extract_output !output_name in
let revd = get_objfiles ~with_ocamlparam:false in
- Bytepackager.package_files ppf (Compmisc.initial_env ())
+ Bytepackager.package_files (Compmisc.initial_env ())
revd (extracted_output);
Warnings.check_fatal ();
end
@@ -193,7 +192,7 @@ let main () =
default_output !output_name
in
Compmisc.init_path false;
- Bytelink.link ppf (get_objfiles ~with_ocamlparam:true) target;
+ Bytelink.link (get_objfiles ~with_ocamlparam:true) target;
Warnings.check_fatal ();
end;
with x ->