aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorPierre-Marie Pédrot2019-11-01 14:43:03 +0100
committerPierre-Marie Pédrot2019-11-01 14:43:03 +0100
commitd00c0b93ec4cb5ca48a9dc2ddf2cfd2038208ee2 (patch)
tree41badb2d2c77b530018af361543ed57ab41a5fcd /lib
parentef3a68200b3dad67f31aeb741479d2adc8ebf0d9 (diff)
parentc5ce7dfe595beaced11646e3aed7e3532a1353f0 (diff)
Merge PR #8642: Compiled interfaces with -vos and -vok options
Ack-by: SkySkimmer Ack-by: Zimmi48 Ack-by: ejgallego Ack-by: gares Ack-by: maximedenes Ack-by: ppedrot
Diffstat (limited to 'lib')
-rw-r--r--lib/flags.ml2
-rw-r--r--lib/flags.mli4
2 files changed, 6 insertions, 0 deletions
diff --git a/lib/flags.ml b/lib/flags.ml
index 7676665fe9..90b5f877d5 100644
--- a/lib/flags.ml
+++ b/lib/flags.ml
@@ -44,6 +44,8 @@ let with_options ol f x =
let async_proofs_worker_id = ref "master"
let async_proofs_is_worker () = !async_proofs_worker_id <> "master"
+let load_vos_libraries = ref false
+
let debug = ref false
let in_debugger = ref false
diff --git a/lib/flags.mli b/lib/flags.mli
index 3f72cc4b91..76a78e61fc 100644
--- a/lib/flags.mli
+++ b/lib/flags.mli
@@ -35,6 +35,10 @@
val async_proofs_worker_id : string ref
val async_proofs_is_worker : unit -> bool
+(** Flag to indicate that .vos files should be loaded for dependencies
+ instead of .vo files. Used by -vos and -vok options. *)
+val load_vos_libraries : bool ref
+
(** Debug flags *)
val debug : bool ref
val in_debugger : bool ref