aboutsummaryrefslogtreecommitdiff
path: root/configure.ml
diff options
context:
space:
mode:
authorEnrico Tassi2019-01-22 16:04:55 +0100
committerEnrico Tassi2019-01-22 18:03:18 +0100
commit39cc93218473f1072803805101f7b5cc48b2169e (patch)
tree234c129e55a3931665291496ef29169e13692311 /configure.ml
parent816d8e6723c7272f2df0ff9e614f8a0fe19f66c9 (diff)
[configure] print Sys.os_type since Architecture alone is ambigous
Diffstat (limited to 'configure.ml')
-rw-r--r--configure.ml1
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.ml b/configure.ml
index 33f76078cf..6f5ade3b9a 100644
--- a/configure.ml
+++ b/configure.ml
@@ -1001,6 +1001,7 @@ let print_summary () =
pr " Architecture : %s\n" arch;
if operating_system <> "" then
pr " Operating system : %s\n" operating_system;
+ pr " Sys.os_type : %s\n" Sys.os_type;
pr " Coq VM bytecode link flags : %s\n" (String.concat " " vmbyteflags);
pr " Other bytecode link flags : %s\n" custom_flag;
pr " OCaml version : %s\n" caml_version;