aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/flags.ml6
-rw-r--r--lib/flags.mli6
2 files changed, 12 insertions, 0 deletions
diff --git a/lib/flags.ml b/lib/flags.ml
index ffb324d535..765574cb4b 100644
--- a/lib/flags.ml
+++ b/lib/flags.ml
@@ -160,3 +160,9 @@ let default_inline_level = 100
let inline_level = ref default_inline_level
let set_inline_level = (:=) inline_level
let get_inline_level () = !inline_level
+
+(* Disabling native code compilation for conversion and normalization *)
+let no_native_compiler = ref false
+
+(* Print the mod uid associated to a vo file by the native compiler *)
+let print_mod_uid = ref false
diff --git a/lib/flags.mli b/lib/flags.mli
index f529dd5df0..6b26c50d9e 100644
--- a/lib/flags.mli
+++ b/lib/flags.mli
@@ -100,3 +100,9 @@ val camlp4bin : string ref
val set_inline_level : int -> unit
val get_inline_level : unit -> int
val default_inline_level : int
+
+(* Disabling native code compilation for conversion and normalization *)
+val no_native_compiler : bool ref
+
+(* Print the mod uid associated to a vo file by the native compiler *)
+val print_mod_uid : bool ref