aboutsummaryrefslogtreecommitdiffhomepage
path: root/toplevel
diff options
context:
space:
mode:
authorGravatar Maxime Dénès <mail@maximedenes.fr>2017-12-14 17:23:13 +0100
committerGravatar Maxime Dénès <mail@maximedenes.fr>2017-12-14 17:23:13 +0100
commit1853470c78d1a8aa2525dd57bbfce1064d359ff2 (patch)
treed0af37b803fd6113e9fdc12f37501af3c8eba7ae /toplevel
parent84e570d7c532f16104157b806da714906fdf26b3 (diff)
parent4554a860ffdcb30bf5711bd52f443484f9f950d9 (diff)
Merge PR #6264: [kernel] Patch allowing to disable VM reduction.
Diffstat (limited to 'toplevel')
-rw-r--r--toplevel/coqtop.ml4
1 files changed, 2 insertions, 2 deletions
diff --git a/toplevel/coqtop.ml b/toplevel/coqtop.ml
index 2fa9f0ab4..437b7b0ac 100644
--- a/toplevel/coqtop.ml
+++ b/toplevel/coqtop.ml
@@ -727,9 +727,9 @@ let parse_args arglist =
|"-noinit"|"-nois" -> load_init := false
|"-no-glob"|"-noglob" -> Dumpglob.noglob (); glob_opt := true
|"-native-compiler" ->
- if Coq_config.no_native_compiler then
+ if not Coq_config.native_compiler then
warning "Native compilation was disabled at configure time."
- else Flags.native_compiler := true
+ else Flags.output_native_objects := true
|"-output-context" -> output_context := true
|"-profile-ltac" -> Flags.profile_ltac := true
|"-q" -> Coqinit.no_load_rc ()