aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Gross2020-09-21 12:38:25 -0400
committerJason Gross2020-09-21 12:42:14 -0400
commitfef5b75e72e1dc2889875616f56332a00dc50534 (patch)
tree09eb1524b44597aa8f9a3cf6ee0033702484d863
parent84d5475169ec0ba3d11928dab11eba6bc3d19d9b (diff)
Make print-pretty-timed robust against non-output-sync logs
Also pass `--output-sync` on the CI, as suggested in https://github.com/coq/coq/pull/12653#issuecomment-696226093, to protect against this failure mode. Fixes #13062
-rw-r--r--dev/ci/ci-common.sh4
-rw-r--r--doc/changelog/08-tools/13063-fix-no-output-sync-make-file.rst6
-rwxr-xr-xtest-suite/coq-makefile/timing/precomputed-time-tests/007-no-output-sync/run.sh11
-rw-r--r--test-suite/coq-makefile/timing/precomputed-time-tests/007-no-output-sync/time-of-build.err.log.expected1
-rw-r--r--test-suite/coq-makefile/timing/precomputed-time-tests/007-no-output-sync/time-of-build.log.expected398
-rw-r--r--test-suite/coq-makefile/timing/precomputed-time-tests/007-no-output-sync/time-of-build.log.in5629
-rwxr-xr-xtest-suite/coq-makefile/timing/precomputed-time-tests/run.sh1
-rw-r--r--tools/TimeFileMaker.py7
8 files changed, 6054 insertions, 3 deletions
diff --git a/dev/ci/ci-common.sh b/dev/ci/ci-common.sh
index c01bc57f72..f9187d53a6 100644
--- a/dev/ci/ci-common.sh
+++ b/dev/ci/ci-common.sh
@@ -97,9 +97,9 @@ make()
if [ -z "${MAKEFLAGS+x}" ] && [ -n "${NJOBS}" ];
then
# Not submake and parallel make requested
- command make -j "$NJOBS" "$@"
+ command make --output-sync -j "$NJOBS" "$@"
else
- command make "$@"
+ command make --output-sync "$@"
fi
}
diff --git a/doc/changelog/08-tools/13063-fix-no-output-sync-make-file.rst b/doc/changelog/08-tools/13063-fix-no-output-sync-make-file.rst
new file mode 100644
index 0000000000..75b1e26248
--- /dev/null
+++ b/doc/changelog/08-tools/13063-fix-no-output-sync-make-file.rst
@@ -0,0 +1,6 @@
+- **Fixed:**
+ Targets such as ``print-pretty-timed`` in ``coq_makefile``-made
+ ``Makefile``\s no longer error in rare cases where ``--output-sync`` is not
+ passed to make and the timing output gets interleaved in just the wrong way
+ (`#13063 <https://github.com/coq/coq/pull/13063>`_, fixes `#13062
+ <https://github.com/coq/coq/issues/13062>`_, by Jason Gross).
diff --git a/test-suite/coq-makefile/timing/precomputed-time-tests/007-no-output-sync/run.sh b/test-suite/coq-makefile/timing/precomputed-time-tests/007-no-output-sync/run.sh
new file mode 100755
index 0000000000..a5c48b3324
--- /dev/null
+++ b/test-suite/coq-makefile/timing/precomputed-time-tests/007-no-output-sync/run.sh
@@ -0,0 +1,11 @@
+#!/usr/bin/env bash
+
+set -x
+set -e
+
+cd "$(dirname "${BASH_SOURCE[0]}")"
+
+"$COQLIB"/tools/make-one-time-file.py time-of-build.log.in time-of-build.log 2>time-of-build.err.log || exit $?
+
+diff -u time-of-build.log.expected time-of-build.log || exit $?
+diff -u time-of-build.err.log.expected time-of-build.err.log || exit $?
diff --git a/test-suite/coq-makefile/timing/precomputed-time-tests/007-no-output-sync/time-of-build.err.log.expected b/test-suite/coq-makefile/timing/precomputed-time-tests/007-no-output-sync/time-of-build.err.log.expected
new file mode 100644
index 0000000000..f2184407e7
--- /dev/null
+++ b/test-suite/coq-makefile/timing/precomputed-time-tests/007-no-output-sync/time-of-build.err.log.expected
@@ -0,0 +1 @@
+WARNING: Invalid time string: not the right number of dots (.); expected one: '0.240.05'
diff --git a/test-suite/coq-makefile/timing/precomputed-time-tests/007-no-output-sync/time-of-build.log.expected b/test-suite/coq-makefile/timing/precomputed-time-tests/007-no-output-sync/time-of-build.log.expected
new file mode 100644
index 0000000000..0fb57a1406
--- /dev/null
+++ b/test-suite/coq-makefile/timing/precomputed-time-tests/007-no-output-sync/time-of-build.log.expected
@@ -0,0 +1,398 @@
+ Time | Peak Mem | File Name
+-------------------------------------------------------------
+29m02.87s | 1136588 ko | Total Time / Peak Mem
+-------------------------------------------------------------
+ 2m19.40s | 1007764 ko | PCUICSafeConversion.vo
+ 1m59.92s | 1136588 ko | PCUICSafeReduce.vo
+ 1m34.58s | 849824 ko | PCUICParallelReductionConfluence.vo
+ 1m26.21s | 1038900 ko | erasure_live_test.vo
+ 1m20.36s | 975764 ko | PCUICSR.vo
+ 0m56.51s | 896928 ko | bugkncst.vo
+ 0m56.17s | 1113548 ko | ErasureCorrectness.vo
+ 0m56.09s | 958816 ko | PCUICSafeChecker.vo
+ 0m51.78s | 809012 ko | Typing.vo
+ 0m42.82s | 727688 ko | PCUICTyping.vo
+ 0m39.21s | 1012876 ko | ErasureFunction.vo
+ 0m39.04s | 790088 ko | PCUICEquality.vo
+ 0m38.12s | 657100 ko | PCUICSigmaCalculus.vo
+ 0m34.44s | 742788 ko | PCUICConfluence.vo
+ 0m29.65s | 750296 ko | PCUICConversion.vo
+ 0m28.26s | 779308 ko | PCUICParallelReduction.vo
+ 0m28.24s | 723216 ko | PCUICPosition.vo
+ 0m27.93s | 621392 ko | Substitution.vo
+ 0m26.28s | 597996 ko | PCUICLiftSubst.vo
+ 0m26.11s | 959132 ko | PCUICPrincipality.vo
+ 0m25.86s | 857128 ko | times_bool_fun.vo
+ 0m25.65s | 673140 ko | PCUICSubstitution.vo
+ 0m23.99s | 654592 ko | PCUICClosed.vo
+ 0m23.42s | 685852 ko | PCUICWeakening.vo
+ 0m23.34s | 854428 ko | SafeErasureFunction.vo
+ 0m22.85s | 706592 ko | PCUICSpine.vo
+ 0m21.55s | 603616 ko | Closed.vo
+ 0m19.93s | 581920 ko | tauto.vo
+ 0m19.08s | 683776 ko | PCUICInductives.vo
+ 0m17.91s | 741808 ko | param_original.vo
+ 0m15.64s | 579100 ko | Weakening.vo
+ 0m14.98s | 623196 ko | PCUICNameless.vo
+ 0m13.39s | 794032 ko | ESubstitution.vo
+ 0m13.16s | 641024 ko | TemplateToPCUICCorrectness.vo
+ 0m11.81s | 532016 ko | LiftSubst.vo
+ 0m11.54s | 589944 ko | PCUICWcbvEval.vo
+ 0m10.41s | 621644 ko | PCUICUnivSubstitution.vo
+ 0m10.39s | 661964 ko | PCUICInductiveInversion.vo
+ 0m10.08s | 521520 ko | ELiftSubst.vo
+ 0m09.58s | 684644 ko | PCUICAlpha.vo
+ 0m09.35s | 622488 ko | PCUICInversion.vo
+ 0m08.74s | 629108 ko | PCUICContextConversion.vo
+ 0m08.61s | 892080 ko | param_generous_packed.vo
+ 0m08.05s | 556676 ko | TypingWf.vo
+ 0m07.84s | 608576 ko | PCUICToTemplateCorrectness.vo
+ 0m07.75s | 625664 ko | PCUICArities.vo
+ 0m07.64s | 646256 ko | PCUICElimination.vo
+ 0m07.23s | 614752 ko | times_bool_fun2.vo
+ 0m06.54s | 667924 ko | PCUICSafeLemmata.vo
+ 0m06.33s | 615568 ko | PCUICContexts.vo
+ 0m06.30s | 733700 ko | PCUICSafeRetyping.vo
+ 0m06.16s | 583116 ko | PCUICReduction.vo
+ 0m06.04s | 529900 ko | utils/MCCompare.vo
+ 0m05.85s | 551516 ko | common/uGraph.vo
+ 0m05.66s | 643396 ko | EArities.vo
+ 0m04.94s | 533768 ko | WcbvEval.vo
+ 0m04.90s | 501352 ko | vs.vo
+ 0m04.72s | 498552 ko | utils/wGraph.vo
+ 0m04.53s | 552364 ko | Reflect.vo
+ 0m04.41s | 348856 ko | MiniHoTT.vo
+ 0m04.38s | 571076 ko | PCUICWeakeningEnv.vo
+ 0m04.23s | 531272 ko | Universes.vo
+ 0m04.11s | 543956 ko | PCUICReflect.vo
+ 0m04.00s | 555748 ko | Checker.vo
+ 0m03.99s | 624912 ko | PCUICValidity.vo
+ 0m03.99s | 806128 ko | SafeTemplateErasure.vo
+ 0m03.85s | 520080 ko | EWcbvEval.vo
+ 0m03.42s | 350716 ko | MiniHoTT_paths.vo
+ 0m03.39s | 741428 ko | Prelim.vo
+ 0m03.34s | 586388 ko | PCUICGeneration.vo
+ 0m03.33s | 533884 ko | PCUICUnivSubst.vo
+ 0m03.11s | 561316 ko | Extraction.vo
+ 0m03.11s | 490756 ko | UnivSubst.vo
+ 0m02.89s | 726228 ko | safechecker_test.vo
+ 0m02.80s | 512292 ko | WeakeningEnv.vo
+ 0m02.78s | 543424 ko | PCUICAstUtils.vo
+ 0m02.78s | 465984 ko | utils/All_Forall.vo
+ 0m02.67s | 729072 ko | EInversion.vo
+ 0m02.42s | 703592 ko | SafeTemplateChecker.vo
+ 0m02.27s | 558304 ko | TypingTests.vo
+ 0m02.12s | 630488 ko | PCUICSN.vo
+ 0m01.93s | 556444 ko | param_binary.vo
+ 0m01.85s | 561876 ko | PCUICCumulativity.vo
+ 0m01.82s | 554420 ko | translation_utils.vo
+ 0m01.77s | 491968 ko | EnvironmentTyping.vo
+ 0m01.75s | 598288 ko | PCUICCtxShape.vo
+ 0m01.69s | 514692 ko | Generation.vo
+ 0m01.62s | 512080 ko | bug5.vo
+ 0m01.58s | 589768 ko | PCUICRetyping.vo
+ 0m01.57s | 617808 ko | Extract.vo
+ 0m01.56s | 527740 ko | demo.vo
+ 0m01.55s | 562424 ko | PCUICCSubst.vo
+ 0m01.49s | 553352 ko | param_cheap_packed.vo
+ 0m01.47s | 527440 ko | PCUICUtils.vo
+ 0m01.47s | 452340 ko | utils/MCList.vo
+ 0m01.44s | 503484 ko | PCUICSize.vo
+ 0m01.42s | 619396 ko | EAll.vo
+ 0m01.37s | 551200 ko | PCUICNormal.vo
+ 0m01.35s | 526276 ko | modules_sections.vo
+ 0m01.34s | 549492 ko | standard_model.vo
+ 0m01.30s | 551364 ko | PCUICPretty.vo
+ 0m01.29s | 545736 ko | All.vo
+ 0m01.21s | 524028 ko | proj.vo
+ 0m01.21s | 513888 ko | test/test.vo
+ 0m01.18s | 486324 ko | Induction.vo
+ 0m01.13s | 524144 ko | add_constructor.vo
+ 0m01.11s | 549776 ko | PCUICChecker.vo
+ 0m01.10s | 487520 ko | EAstUtils.vo
+ 0m01.10s | 484172 ko | Environment.vo
+ 0m01.10s | 543584 ko | erasure_test.vo
+ 0m01.09s | 525128 ko | order_rec.vo
+ 0m01.05s | 512080 ko | ECSubst.vo
+ 0m01.05s | 489932 ko | WfInv.vo
+ 0m01.05s | 522968 ko | issue28.vo
+ 0m01.04s | 527408 ko | PCUICToTemplate.vo
+ 0m01.03s | 510284 ko | bug1.vo
+ 0m01.03s | 522996 ko | run_in_tactic.vo
+ 0m01.03s | 522248 ko | unfold.vo
+ 0m01.02s | 522688 ko | issue27.vo
+ 0m01.01s | 524932 ko | tmVariable.vo
+ 0m01.00s | 485664 ko | AstUtils.vo
+ 0m00.99s | 522992 ko | univ.vo
+ 0m00.98s | 522552 ko | tmInferInstance.vo
+ 0m00.96s | 546928 ko | PCUICMetaTheory.vo
+ 0m00.94s | 510368 ko | castprop.vo
+ 0m00.94s | 500016 ko | opaque.vo
+ 0m00.92s | 522724 ko | tmExistingInstance.vo
+ 0m00.91s | 513348 ko | MyPlugin.vo
+ 0m00.90s | 524140 ko | Retyping.vo
+ 0m00.90s | 500080 ko | letin.vo
+ 0m00.89s | 481312 ko | PCUICInduction.vo
+ 0m00.89s | 500252 ko | bug7.vo
+ 0m00.89s | 500068 ko | mutind.vo
+ 0m00.88s | 500120 ko | case.vo
+ 0m00.88s | 501748 ko | extractable.vo
+ 0m00.87s | 486460 ko | Pretty.vo
+ 0m00.86s | 500064 ko | sigma.vo
+ 0m00.85s | 500408 ko | bug6.vo
+ 0m00.84s | 497360 ko | Normal.vo
+ 0m00.84s | 500436 ko | bug8.vo
+ 0m00.82s | 498504 ko | Constants.vo
+ 0m00.81s | 500380 ko | bug2.vo
+ 0m00.81s | 500192 ko | cofix.vo
+ 0m00.80s | 502088 ko | hnf_ctor.vo
+ 0m00.79s | 479940 ko | Ast.vo
+ 0m00.79s | 500100 ko | evars.vo
+ 0m00.77s | 488076 ko | EPretty.vo
+ 0m00.75s | 450728 ko | BasicAst.vo
+ 0m00.75s | 477372 ko | PCUICAst.vo
+ 0m00.73s | 487644 ko | ETyping.vo
+ 0m00.73s | 481988 ko | TemplateMonad/Core.vo
+ 0m00.72s | 477800 ko | EAst.vo
+ 0m00.71s | 479012 ko | EInduction.vo
+ 0m00.70s | 485084 ko | EWndEval.vo
+ 0m00.70s | 481156 ko | TemplateMonad/Extractable.vo
+ 0m00.69s | 482472 ko | TemplateToPCUIC.vo
+ 0m00.60s | 433064 ko | PCUICCheckerCompleteness.vo
+ 0m00.60s | 437492 ko | TemplateMonad/Common.vo
+ 0m00.56s | 440168 ko | utils/MCOption.vo
+ 0m00.54s | 420452 ko | TemplateMonad.vo
+ 0m00.52s | 385340 ko | utils.vo
+ 0m00.48s | 404556 ko | utils/MCArith.vo
+ 0m00.42s | 339136 ko | utils/LibHypsNaming.vo
+ 0m00.41s | 39160 ko | gen-src/universes0.cmx
+ 0m00.33s | 45284 ko | pCUICSafeChecker.cmx
+ 0m00.30s | 270156 ko | utils/MCString.vo
+ 0m00.29s | 238116 ko | Loader.vo
+ 0m00.27s | 43056 ko | pCUICSafeConversion.cmx
+0m00.240s | N/A | denoter.cmx
+ 0m00.19s | 34468 ko | gen-src/quoter.cmx
+ 0m00.17s | 33044 ko | constr_quoter.cmx
+ 0m00.15s | 25208 ko | gen-src/binPos.cmx
+ 0m00.15s | 38520 ko | run_template_monad.cmx
+ 0m00.14s | 31740 ko | constr_denoter.cmx
+ 0m00.14s | 25372 ko | gen-src/all_Forall.cmx
+ 0m00.14s | 149456 ko | monad_utils.vo
+ 0m00.14s | 31636 ko | wGraph.cmx
+ 0m00.13s | 23892 ko | gen-src/binPosDef.cmx
+ 0m00.13s | 20232 ko | metacoq_erasure_plugin.cmxs
+ 0m00.12s | 22784 ko | gen-src/binInt.cmx
+ 0m00.11s | 31208 ko | erasureFunction.cmx
+ 0m00.11s | 31632 ko | gen-src/metacoq_template_plugin.cmx
+ 0m00.11s | 20224 ko | metacoq_safechecker_plugin.cmxs
+ 0m00.11s | 30984 ko | uGraph0.cmx
+ 0m00.10s | 28644 ko | eAst.cmx
+ 0m00.10s | 33140 ko | g_template_coq.cmx
+ 0m00.10s | 27364 ko | gen-src/ast_quoter.cmx
+ 0m00.10s | 20796 ko | gen-src/binNat.cmx
+ 0m00.10s | 18416 ko | gen-src/metacoq_template_plugin.cmxs
+ 0m00.10s | 27228 ko | gen-src/myPlugin.cmx
+ 0m00.10s | 26404 ko | gen-src/quoter.cmo
+ 0m00.09s | 26992 ko | ePretty.cmx
+ 0m00.09s | 35368 ko | g_metacoq_safechecker.cmx
+ 0m00.09s | 24572 ko | gen-src/ast0.cmx
+ 0m00.09s | 20020 ko | gen-src/hexadecimal.cmx
+ 0m00.09s | 30504 ko | gen-src/run_extractable.cmx
+ 0m00.09s | 29148 ko | pCUICPretty.cmx
+ 0m00.09s | 29852 ko | safeErasureFunction.cmx
+ 0m00.09s | 88348 ko | utils/MCProd.vo
+ 0m00.08s | 27288 ko | gen-src/ast_denoter.cmx
+ 0m00.08s | 24324 ko | gen-src/denoter.cmx
+ 0m00.08s | 21352 ko | gen-src/mSetList.cmx
+ 0m00.08s | 22020 ko | gen-src/pretty.cmx
+ 0m00.08s | 32668 ko | metacoq_erasure_plugin.cmx
+ 0m00.08s | 26392 ko | pCUICAstUtils.cmx
+ 0m00.08s | 27752 ko | pCUICTyping.cmx
+ 0m00.07s | 19912 ko | gen-src/peanoNat.cmx
+ 0m00.07s | 27504 ko | gen-src/plugin_core.cmx
+ 0m00.07s | 27792 ko | pCUICSafeReduce.cmx
+ 0m00.07s | 30244 ko | safeTemplateErasure.cmx
+ 0m00.06s | 24684 ko | eTyping.cmx
+ 0m00.06s | 22652 ko | erasureFunction.cmi
+ 0m00.06s | 27844 ko | g_demo_plugin.cmx
+ 0m00.06s | 30052 ko | g_metacoq_erasure.cmx
+ 0m00.06s | 25216 ko | mSetWeakList.cmx
+ 0m00.06s | 30436 ko | metacoq_safechecker_plugin.cmx
+ 0m00.06s | 26256 ko | pCUICEquality.cmx
+ 0m00.06s | 26244 ko | pCUICLiftSubst.cmx
+ 0m00.06s | 26048 ko | pCUICPosition.cmx
+ 0m00.06s | 23232 ko | pCUICSafeConversion.cmi
+ 0m00.06s | 27380 ko | pCUICSafeRetyping.cmx
+ 0m00.06s | 25408 ko | safeTemplateChecker.cmx
+ 0m00.06s | 26384 ko | templateToPCUIC.cmx
+ 0m00.06s | 24780 ko | uGraph0.cmi
+ 0m00.05s | 64048 ko | Lens.vo
+ 0m00.05s | 24800 ko | eAstUtils.cmx
+ 0m00.05s | 25192 ko | eLiftSubst.cmx
+ 0m00.05s | 22440 ko | gen-src/ast_quoter.cmo
+ 0m00.05s | 20324 ko | gen-src/mSetInterface.cmx
+ 0m00.05s | 26032 ko | pCUICAst.cmx
+ 0m00.05s | 25140 ko | pCUICChecker.cmx
+ 0m00.05s | 24336 ko | pCUICReflect.cmx
+ 0m00.05s | 24300 ko | pCUICSafeChecker.cmi
+ 0m00.05s | 21556 ko | pCUICSafeReduce.cmi
+ 0m00.05s | 25180 ko | pCUICUnivSubst.cmx
+ 0m00.05s | 21660 ko | safeErasureFunction.cmi
+ 0m00.05s | 23148 ko | safeTemplateErasure.cmi
+ 0m00.05s | 21328 ko | templateToPCUIC.cmi
+ 0m00.05s | 16040 ko | template_coq.cmxs
+ 0m00.05s | 24076 ko | typing0.cmx
+ 0m00.05s | 63096 ko | utils/MCPrelude.vo
+ 0m00.05s | 68156 ko | utils/MCRelations.vo
+ 0m00.05s | 22824 ko | wGraph.cmi
+ 0m00.04s | 62716 ko | ExtractableLoader.vo
+ 0m00.04s | 61716 ko | config.vo
+ 0m00.04s | 22020 ko | constr_reification.cmx
+ 0m00.04s | 21964 ko | demo_plugin.cmx
+ 0m00.04s | 20540 ko | ePretty.cmi
+ 0m00.04s | 23032 ko | extract.cmx
+ 0m00.04s | 19608 ko | gen-src/astUtils.cmx
+ 0m00.04s | 18780 ko | gen-src/extractable.cmx
+ 0m00.04s | 22124 ko | gen-src/lens.cmx
+ 0m00.04s | 19008 ko | gen-src/liftSubst.cmx
+ 0m00.04s | 19600 ko | gen-src/mSetProperties.cmx
+ 0m00.04s | 20208 ko | gen-src/myPlugin.cmi
+ 0m00.04s | 18464 ko | gen-src/nat0.cmx
+ 0m00.04s | 22136 ko | gen-src/tm_util.cmx
+ 0m00.04s | 18504 ko | gen-src/universes0.cmi
+ 0m00.04s | 20108 ko | mSetWeakList.cmi
+ 0m00.04s | 22452 ko | monad_utils.cmx
+ 0m00.04s | 21244 ko | pCUICAst.cmi
+ 0m00.04s | 20412 ko | pCUICAstUtils.cmi
+ 0m00.04s | 21236 ko | pCUICChecker.cmi
+ 0m00.04s | 20560 ko | pCUICPretty.cmi
+ 0m00.04s | 21400 ko | pCUICTyping.cmi
+ 0m00.04s | 20348 ko | safeTemplateChecker.cmi
+ 0m00.04s | 19228 ko | utils.cmi
+ 0m00.04s | 22212 ko | utils.cmx
+ 0m00.04s | 62924 ko | utils/MCEquality.vo
+ 0m00.04s | 61384 ko | utils/MCSquash.vo
+ 0m00.03s | 19340 ko | classes0.cmi
+ 0m00.03s | 20908 ko | eAst.cmi
+ 0m00.03s | 19496 ko | eAstUtils.cmi
+ 0m00.03s | 20252 ko | eTyping.cmi
+ 0m00.03s | 19268 ko | eqDecInstances.cmi
+ 0m00.03s | 22196 ko | eqDecInstances.cmx
+ 0m00.03s | 19396 ko | eqdepFacts.cmi
+ 0m00.03s | 22072 ko | eqdepFacts.cmx
+ 0m00.03s | 21060 ko | extract.cmi
+ 0m00.03s | 18744 ko | gen-src/basicAst.cmx
+ 0m00.03s | 17936 ko | gen-src/decimal.cmx
+ 0m00.03s | 19716 ko | gen-src/environment.cmx
+ 0m00.03s | 19172 ko | gen-src/lens.cmi
+ 0m00.03s | 17796 ko | gen-src/list0.cmx
+ 0m00.03s | 18548 ko | gen-src/univSubst0.cmx
+ 0m00.03s | 19324 ko | init.cmi
+ 0m00.03s | 22188 ko | init.cmx
+ 0m00.03s | 19272 ko | monad_utils.cmi
+ 0m00.03s | 20372 ko | pCUICEquality.cmi
+ 0m00.03s | 20444 ko | pCUICLiftSubst.cmi
+ 0m00.03s | 22044 ko | pCUICNormal.cmx
+ 0m00.03s | 20488 ko | pCUICPosition.cmi
+ 0m00.03s | 20240 ko | pCUICReflect.cmi
+ 0m00.03s | 19348 ko | pCUICSafeLemmata.cmi
+ 0m00.03s | 21604 ko | pCUICSafeRetyping.cmi
+ 0m00.03s | 20308 ko | pCUICUnivSubst.cmi
+ 0m00.03s | 21812 ko | tm_util.cmx
+ 0m00.03s | 20300 ko | typing0.cmi
+ 0m00.02s | 21960 ko | classes0.cmx
+ 0m00.02s | 19300 ko | eLiftSubst.cmi
+ 0m00.02s | 16900 ko | gen-src/ascii.cmx
+ 0m00.02s | 16836 ko | gen-src/cRelationClasses.cmx
+ 0m00.02s | 16420 ko | gen-src/common0.cmx
+ 0m00.02s | 16472 ko | gen-src/mCString.cmx
+ 0m00.02s | 15244 ko | gen-src/mSetInterface.cmi
+ 0m00.02s | 15212 ko | gen-src/mSetProperties.cmi
+ 0m00.02s | 17196 ko | gen-src/plugin_core.cmi
+ 0m00.02s | 16332 ko | gen-src/specif.cmx
+ 0m00.02s | 16504 ko | gen-src/string0.cmx
+ 0m00.02s | 18448 ko | gen-src/tm_util.cmo
+ 0m00.02s | 19224 ko | pCUICCumulativity.cmi
+ 0m00.02s | 21940 ko | pCUICCumulativity.cmx
+ 0m00.02s | 19304 ko | pCUICNormal.cmi
+ 0m00.02s | 22084 ko | pCUICSafeLemmata.cmx
+ 0m00.02s | 19220 ko | ssrbool.cmi
+ 0m00.02s | 21912 ko | ssrbool.cmx
+ 0m00.02s | 19956 ko | template_coq.cmx
+ 0m00.01s | 14256 ko | demo_plugin.cmxs
+ 0m00.01s | 14992 ko | gen-src/all_Forall.cmi
+ 0m00.01s | 15204 ko | gen-src/ast0.cmi
+ 0m00.01s | 14404 ko | gen-src/basicAst.cmi
+ 0m00.01s | 13564 ko | gen-src/binInt.cmi
+ 0m00.01s | 14264 ko | gen-src/binPos.cmi
+ 0m00.01s | 15772 ko | gen-src/bool.cmx
+ 0m00.01s | 13388 ko | gen-src/cRelationClasses.cmi
+ 0m00.01s | 15536 ko | gen-src/compare_dec.cmx
+ 0m00.01s | 16200 ko | gen-src/datatypes.cmx
+ 0m00.01s | 14988 ko | gen-src/environment.cmi
+ 0m00.01s | 15840 ko | gen-src/equalities.cmx
+ 0m00.01s | 13404 ko | gen-src/list0.cmi
+ 0m00.01s | 15672 ko | gen-src/mCCompare.cmx
+ 0m00.01s | 16712 ko | gen-src/mCList.cmx
+ 0m00.01s | 15708 ko | gen-src/mCProd.cmx
+ 0m00.01s | 13748 ko | gen-src/mSetFacts.cmi
+ 0m00.01s | 17012 ko | gen-src/mSetFacts.cmx
+ 0m00.01s | 15760 ko | gen-src/mSetList.cmi
+ 0m00.01s | 14056 ko | gen-src/metacoq_template_plugin.cmxa
+ 0m00.01s | 15860 ko | gen-src/orderedType0.cmx
+ 0m00.01s | 13748 ko | gen-src/orders.cmi
+ 0m00.01s | 16768 ko | gen-src/orders.cmx
+ 0m00.01s | 16032 ko | gen-src/ordersFacts.cmx
+ 0m00.01s | 15844 ko | gen-src/ordersTac.cmx
+ 0m00.01s | 11760 ko | gen-src/reification.cmo
+ 0m00.01s | 14740 ko | gen-src/reification.cmx
+ 0m00.01s | 13824 ko | gen-src/run_extractable.cmi
+ 0m00.01s | 13460 ko | i
+ 0m00.01s | 17068 ko | plugin_core.cmi
+ 0m00.01s | 14796 ko | reification.cmx
+ 0m00.00s | 13200 ko | demo_plugin.cmxa
+ 0m00.00s | 12228 ko | gen-src/ascii.cmi
+ 0m00.00s | 14040 ko | gen-src/astUtils.cmi
+ 0m00.00s | 11244 ko | gen-src/basics.cmi
+ 0m00.00s | 13444 ko | gen-src/binNat.cmi
+ 0m00.00s | 11340 ko | gen-src/binNums.cmi
+ 0m00.00s | 13536 ko | gen-src/binPosDef.cmi
+ 0m00.00s | 11744 ko | gen-src/bool.cmi
+ 0m00.00s | 13492 ko | gen-src/common0.cmi
+ 0m00.00s | 11720 ko | gen-src/compare_dec.cmi
+ 0m00.00s | 11112 ko | gen-src/config0.cmi
+ 0m00.00s | 14648 ko | gen-src/config0.cmx
+ 0m00.00s | 12948 ko | gen-src/datatypes.cmi
+ 0m00.00s | 12404 ko | gen-src/decimal.cmi
+ 0m00.00s | 13240 ko | gen-src/equalities.cmi
+ 0m00.00s | 13580 ko | gen-src/extractable.cmi
+ 0m00.00s | 13064 ko | gen-src/hexadecimal.cmi
+ 0m00.00s | 13680 ko | gen-src/liftSubst.cmi
+ 0m00.00s | 11524 ko | gen-src/logic0.cmi
+ 0m00.00s | 15516 ko | gen-src/logic0.cmx
+ 0m00.00s | 11644 ko | gen-src/mCCompare.cmi
+ 0m00.00s | 13612 ko | gen-src/mCList.cmi
+ 0m00.00s | 12200 ko | gen-src/mCOption.cmi
+ 0m00.00s | 11228 ko | gen-src/mCPrelude.cmi
+ 0m00.00s | 14368 ko | gen-src/mCPrelude.cmx
+ 0m00.00s | 11620 ko | gen-src/mCProd.cmi
+ 0m00.00s | 11080 ko | gen-src/mCRelations.cmi
+ 0m00.00s | 14184 ko | gen-src/mCRelations.cmx
+ 0m00.00s | 11712 ko | gen-src/mCString.cmi
+ 0m00.00s | 13776 ko | gen-src/mSetDecide.cmi
+ 0m00.00s | 11900 ko | gen-src/numeral.cmi
+ 0m00.00s | 15820 ko | gen-src/numeral.cmx
+ 0m00.00s | 12108 ko | gen-src/orderedType0.cmi
+ 0m00.00s | 13444 ko | gen-src/ordersFacts.cmi
+ 0m00.00s | 11760 ko | gen-src/ordersLists.cmi
+ 0m00.00s | 15096 ko | gen-src/ordersLists.cmx
+ 0m00.00s | 12464 ko | gen-src/ordersTac.cmi
+ 0m00.00s | 15060 ko | gen-src/pretty.cmi
+ 0m00.00s | 13160 ko | gen-src/specif.cmi
+ 0m00.00s | 12236 ko | gen-src/string0.cmi
+ 0m00.00s | 14128 ko | gen-src/univSubst0.cmi
+ 0m00.00s | 13520 ko | metacoq_erasure_plugin.cmxa
+ 0m00.00s | 13624 ko | metacoq_safechecker_plugin.cmxa
+ 0m00.00s | 13148 ko | run_template_monad.cmi
+ 0m00.00s | 13520 ko | template_coq.cmxa
+ 0m00.00s | 15004 ko | template_monad.cmi
diff --git a/test-suite/coq-makefile/timing/precomputed-time-tests/007-no-output-sync/time-of-build.log.in b/test-suite/coq-makefile/timing/precomputed-time-tests/007-no-output-sync/time-of-build.log.in
new file mode 100644
index 0000000000..47d0e09e1a
--- /dev/null
+++ b/test-suite/coq-makefile/timing/precomputed-time-tests/007-no-output-sync/time-of-build.log.in
@@ -0,0 +1,5629 @@
+Running with gitlab-runner 11.9.2 (fa86510e)
+ on roquableu curNbQZR
+Using Docker executor with image registry.gitlab.com/coq/coq:bionic_coq-V2020-08-28-V92 ...
+Pulling docker image registry.gitlab.com/coq/coq:bionic_coq-V2020-08-28-V92 ...
+Using docker image sha256:f232f9802a06400390b5d6afa5fd280d73c89890309a27e840013ef2e9809c91 for registry.gitlab.com/coq/coq:bionic_coq-V2020-08-28-V92 ...
+section_start:1598963621:prepare_script Running on runner-curNbQZR-project-6138686-concurrent-1 via roquableu...
+section_end:1598963624:prepare_script section_start:1598963624:get_sources Reinitialized existing Git repository in /builds/coq/coq/.git/
+Removing _build_ci/
+Removing _install_ci/
+Removing config/Makefile
+Removing config/coq_config.ml
+Removing config/coq_config.py
+Removing test-suite/misc/universes/all_stdlib.v
+Removing time-of-build.log
+Removing tools/TimeFileMaker.pyc
+Clean repository
+Fetching changes with git depth set to 10...
+fatal: remote origin already exists.
+Auto packing the repository in background for optimum performance.
+See "git help gc" for manual housekeeping.
+Checking out fdbbc0cb as pr-12653...
+
+Skipping Git submodules setup
+section_end:1598963638:get_sources section_start:1598963638:restore_cache section_end:1598963641:restore_cache section_start:1598963641:download_artifacts Downloading artifacts for build:base (713526714)...
+Downloading artifacts from coordinator... ok  id=713526714 responseStatus=200 OK token=CwEA_cmf
+Downloading artifacts for plugin:ci-equations (713526793)...
+Downloading artifacts from coordinator... ok  id=713526793 responseStatus=200 OK token=hxEjzCme
+section_end:1598963691:download_artifacts section_start:1598963691:build_script $ cat /proc/{cpu,mem}info || true
+processor : 0
+vendor_id : GenuineIntel
+cpu family : 6
+model : 45
+model name : Intel(R) Xeon(R) CPU E5-2667 0 @ 2.90GHz
+stepping : 7
+microcode : 0x718
+cpu MHz : 3192.059
+cache size : 15360 KB
+physical id : 0
+siblings : 12
+core id : 0
+cpu cores : 6
+apicid : 0
+initial apicid : 0
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm epb pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts md_clear flush_l1d
+bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit
+bogomips : 5785.73
+clflush size : 64
+cache_alignment : 64
+address sizes : 46 bits physical, 48 bits virtual
+power management:
+
+processor : 1
+vendor_id : GenuineIntel
+cpu family : 6
+model : 45
+model name : Intel(R) Xeon(R) CPU E5-2667 0 @ 2.90GHz
+stepping : 7
+microcode : 0x718
+cpu MHz : 3192.128
+cache size : 15360 KB
+physical id : 0
+siblings : 12
+core id : 1
+cpu cores : 6
+apicid : 2
+initial apicid : 2
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm epb pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts md_clear flush_l1d
+bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit
+bogomips : 5785.73
+clflush size : 64
+cache_alignment : 64
+address sizes : 46 bits physical, 48 bits virtual
+power management:
+
+processor : 2
+vendor_id : GenuineIntel
+cpu family : 6
+model : 45
+model name : Intel(R) Xeon(R) CPU E5-2667 0 @ 2.90GHz
+stepping : 7
+microcode : 0x718
+cpu MHz : 3192.132
+cache size : 15360 KB
+physical id : 0
+siblings : 12
+core id : 2
+cpu cores : 6
+apicid : 4
+initial apicid : 4
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm epb pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts md_clear flush_l1d
+bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit
+bogomips : 5785.73
+clflush size : 64
+cache_alignment : 64
+address sizes : 46 bits physical, 48 bits virtual
+power management:
+
+processor : 3
+vendor_id : GenuineIntel
+cpu family : 6
+model : 45
+model name : Intel(R) Xeon(R) CPU E5-2667 0 @ 2.90GHz
+stepping : 7
+microcode : 0x718
+cpu MHz : 3192.131
+cache size : 15360 KB
+physical id : 0
+siblings : 12
+core id : 3
+cpu cores : 6
+apicid : 6
+initial apicid : 6
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm epb pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts md_clear flush_l1d
+bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit
+bogomips : 5785.73
+clflush size : 64
+cache_alignment : 64
+address sizes : 46 bits physical, 48 bits virtual
+power management:
+
+processor : 4
+vendor_id : GenuineIntel
+cpu family : 6
+model : 45
+model name : Intel(R) Xeon(R) CPU E5-2667 0 @ 2.90GHz
+stepping : 7
+microcode : 0x718
+cpu MHz : 3192.127
+cache size : 15360 KB
+physical id : 0
+siblings : 12
+core id : 4
+cpu cores : 6
+apicid : 8
+initial apicid : 8
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm epb pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts md_clear flush_l1d
+bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit
+bogomips : 5785.73
+clflush size : 64
+cache_alignment : 64
+address sizes : 46 bits physical, 48 bits virtual
+power management:
+
+processor : 5
+vendor_id : GenuineIntel
+cpu family : 6
+model : 45
+model name : Intel(R) Xeon(R) CPU E5-2667 0 @ 2.90GHz
+stepping : 7
+microcode : 0x718
+cpu MHz : 3192.186
+cache size : 15360 KB
+physical id : 0
+siblings : 12
+core id : 5
+cpu cores : 6
+apicid : 10
+initial apicid : 10
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm epb pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts md_clear flush_l1d
+bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit
+bogomips : 5785.73
+clflush size : 64
+cache_alignment : 64
+address sizes : 46 bits physical, 48 bits virtual
+power management:
+
+processor : 6
+vendor_id : GenuineIntel
+cpu family : 6
+model : 45
+model name : Intel(R) Xeon(R) CPU E5-2667 0 @ 2.90GHz
+stepping : 7
+microcode : 0x718
+cpu MHz : 3192.248
+cache size : 15360 KB
+physical id : 1
+siblings : 12
+core id : 0
+cpu cores : 6
+apicid : 32
+initial apicid : 32
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm epb pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts md_clear flush_l1d
+bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit
+bogomips : 5792.29
+clflush size : 64
+cache_alignment : 64
+address sizes : 46 bits physical, 48 bits virtual
+power management:
+
+processor : 7
+vendor_id : GenuineIntel
+cpu family : 6
+model : 45
+model name : Intel(R) Xeon(R) CPU E5-2667 0 @ 2.90GHz
+stepping : 7
+microcode : 0x718
+cpu MHz : 3192.131
+cache size : 15360 KB
+physical id : 1
+siblings : 12
+core id : 1
+cpu cores : 6
+apicid : 34
+initial apicid : 34
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm epb pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts md_clear flush_l1d
+bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit
+bogomips : 5792.29
+clflush size : 64
+cache_alignment : 64
+address sizes : 46 bits physical, 48 bits virtual
+power management:
+
+processor : 8
+vendor_id : GenuineIntel
+cpu family : 6
+model : 45
+model name : Intel(R) Xeon(R) CPU E5-2667 0 @ 2.90GHz
+stepping : 7
+microcode : 0x718
+cpu MHz : 3192.137
+cache size : 15360 KB
+physical id : 1
+siblings : 12
+core id : 2
+cpu cores : 6
+apicid : 36
+initial apicid : 36
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm epb pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts md_clear flush_l1d
+bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit
+bogomips : 5792.29
+clflush size : 64
+cache_alignment : 64
+address sizes : 46 bits physical, 48 bits virtual
+power management:
+
+processor : 9
+vendor_id : GenuineIntel
+cpu family : 6
+model : 45
+model name : Intel(R) Xeon(R) CPU E5-2667 0 @ 2.90GHz
+stepping : 7
+microcode : 0x718
+cpu MHz : 3192.147
+cache size : 15360 KB
+physical id : 1
+siblings : 12
+core id : 3
+cpu cores : 6
+apicid : 38
+initial apicid : 38
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm epb pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts md_clear flush_l1d
+bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit
+bogomips : 5792.29
+clflush size : 64
+cache_alignment : 64
+address sizes : 46 bits physical, 48 bits virtual
+power management:
+
+processor : 10
+vendor_id : GenuineIntel
+cpu family : 6
+model : 45
+model name : Intel(R) Xeon(R) CPU E5-2667 0 @ 2.90GHz
+stepping : 7
+microcode : 0x718
+cpu MHz : 3192.129
+cache size : 15360 KB
+physical id : 1
+siblings : 12
+core id : 4
+cpu cores : 6
+apicid : 40
+initial apicid : 40
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm epb pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts md_clear flush_l1d
+bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit
+bogomips : 5792.29
+clflush size : 64
+cache_alignment : 64
+address sizes : 46 bits physical, 48 bits virtual
+power management:
+
+processor : 11
+vendor_id : GenuineIntel
+cpu family : 6
+model : 45
+model name : Intel(R) Xeon(R) CPU E5-2667 0 @ 2.90GHz
+stepping : 7
+microcode : 0x718
+cpu MHz : 3192.131
+cache size : 15360 KB
+physical id : 1
+siblings : 12
+core id : 5
+cpu cores : 6
+apicid : 42
+initial apicid : 42
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm epb pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts md_clear flush_l1d
+bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit
+bogomips : 5792.29
+clflush size : 64
+cache_alignment : 64
+address sizes : 46 bits physical, 48 bits virtual
+power management:
+
+processor : 12
+vendor_id : GenuineIntel
+cpu family : 6
+model : 45
+model name : Intel(R) Xeon(R) CPU E5-2667 0 @ 2.90GHz
+stepping : 7
+microcode : 0x718
+cpu MHz : 3192.062
+cache size : 15360 KB
+physical id : 0
+siblings : 12
+core id : 0
+cpu cores : 6
+apicid : 1
+initial apicid : 1
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm epb pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts md_clear flush_l1d
+bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit
+bogomips : 5785.73
+clflush size : 64
+cache_alignment : 64
+address sizes : 46 bits physical, 48 bits virtual
+power management:
+
+processor : 13
+vendor_id : GenuineIntel
+cpu family : 6
+model : 45
+model name : Intel(R) Xeon(R) CPU E5-2667 0 @ 2.90GHz
+stepping : 7
+microcode : 0x718
+cpu MHz : 3192.084
+cache size : 15360 KB
+physical id : 0
+siblings : 12
+core id : 1
+cpu cores : 6
+apicid : 3
+initial apicid : 3
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm epb pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts md_clear flush_l1d
+bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit
+bogomips : 5785.73
+clflush size : 64
+cache_alignment : 64
+address sizes : 46 bits physical, 48 bits virtual
+power management:
+
+processor : 14
+vendor_id : GenuineIntel
+cpu family : 6
+model : 45
+model name : Intel(R) Xeon(R) CPU E5-2667 0 @ 2.90GHz
+stepping : 7
+microcode : 0x718
+cpu MHz : 3194.423
+cache size : 15360 KB
+physical id : 0
+siblings : 12
+core id : 2
+cpu cores : 6
+apicid : 5
+initial apicid : 5
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm epb pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts md_clear flush_l1d
+bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit
+bogomips : 5785.73
+clflush size : 64
+cache_alignment : 64
+address sizes : 46 bits physical, 48 bits virtual
+power management:
+
+processor : 15
+vendor_id : GenuineIntel
+cpu family : 6
+model : 45
+model name : Intel(R) Xeon(R) CPU E5-2667 0 @ 2.90GHz
+stepping : 7
+microcode : 0x718
+cpu MHz : 3192.132
+cache size : 15360 KB
+physical id : 0
+siblings : 12
+core id : 3
+cpu cores : 6
+apicid : 7
+initial apicid : 7
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm epb pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts md_clear flush_l1d
+bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit
+bogomips : 5785.73
+clflush size : 64
+cache_alignment : 64
+address sizes : 46 bits physical, 48 bits virtual
+power management:
+
+processor : 16
+vendor_id : GenuineIntel
+cpu family : 6
+model : 45
+model name : Intel(R) Xeon(R) CPU E5-2667 0 @ 2.90GHz
+stepping : 7
+microcode : 0x718
+cpu MHz : 3192.170
+cache size : 15360 KB
+physical id : 0
+siblings : 12
+core id : 4
+cpu cores : 6
+apicid : 9
+initial apicid : 9
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm epb pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts md_clear flush_l1d
+bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit
+bogomips : 5785.73
+clflush size : 64
+cache_alignment : 64
+address sizes : 46 bits physical, 48 bits virtual
+power management:
+
+processor : 17
+vendor_id : GenuineIntel
+cpu family : 6
+model : 45
+model name : Intel(R) Xeon(R) CPU E5-2667 0 @ 2.90GHz
+stepping : 7
+microcode : 0x718
+cpu MHz : 3191.946
+cache size : 15360 KB
+physical id : 0
+siblings : 12
+core id : 5
+cpu cores : 6
+apicid : 11
+initial apicid : 11
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm epb pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts md_clear flush_l1d
+bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit
+bogomips : 5785.73
+clflush size : 64
+cache_alignment : 64
+address sizes : 46 bits physical, 48 bits virtual
+power management:
+
+processor : 18
+vendor_id : GenuineIntel
+cpu family : 6
+model : 45
+model name : Intel(R) Xeon(R) CPU E5-2667 0 @ 2.90GHz
+stepping : 7
+microcode : 0x718
+cpu MHz : 3192.131
+cache size : 15360 KB
+physical id : 1
+siblings : 12
+core id : 0
+cpu cores : 6
+apicid : 33
+initial apicid : 33
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm epb pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts md_clear flush_l1d
+bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit
+bogomips : 5792.29
+clflush size : 64
+cache_alignment : 64
+address sizes : 46 bits physical, 48 bits virtual
+power management:
+
+processor : 19
+vendor_id : GenuineIntel
+cpu family : 6
+model : 45
+model name : Intel(R) Xeon(R) CPU E5-2667 0 @ 2.90GHz
+stepping : 7
+microcode : 0x718
+cpu MHz : 3192.134
+cache size : 15360 KB
+physical id : 1
+siblings : 12
+core id : 1
+cpu cores : 6
+apicid : 35
+initial apicid : 35
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm epb pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts md_clear flush_l1d
+bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit
+bogomips : 5792.29
+clflush size : 64
+cache_alignment : 64
+address sizes : 46 bits physical, 48 bits virtual
+power management:
+
+processor : 20
+vendor_id : GenuineIntel
+cpu family : 6
+model : 45
+model name : Intel(R) Xeon(R) CPU E5-2667 0 @ 2.90GHz
+stepping : 7
+microcode : 0x718
+cpu MHz : 3192.123
+cache size : 15360 KB
+physical id : 1
+siblings : 12
+core id : 2
+cpu cores : 6
+apicid : 37
+initial apicid : 37
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm epb pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts md_clear flush_l1d
+bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit
+bogomips : 5792.29
+clflush size : 64
+cache_alignment : 64
+address sizes : 46 bits physical, 48 bits virtual
+power management:
+
+processor : 21
+vendor_id : GenuineIntel
+cpu family : 6
+model : 45
+model name : Intel(R) Xeon(R) CPU E5-2667 0 @ 2.90GHz
+stepping : 7
+microcode : 0x718
+cpu MHz : 3192.131
+cache size : 15360 KB
+physical id : 1
+siblings : 12
+core id : 3
+cpu cores : 6
+apicid : 39
+initial apicid : 39
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm epb pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts md_clear flush_l1d
+bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit
+bogomips : 5792.29
+clflush size : 64
+cache_alignment : 64
+address sizes : 46 bits physical, 48 bits virtual
+power management:
+
+processor : 22
+vendor_id : GenuineIntel
+cpu family : 6
+model : 45
+model name : Intel(R) Xeon(R) CPU E5-2667 0 @ 2.90GHz
+stepping : 7
+microcode : 0x718
+cpu MHz : 3192.149
+cache size : 15360 KB
+physical id : 1
+siblings : 12
+core id : 4
+cpu cores : 6
+apicid : 41
+initial apicid : 41
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm epb pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts md_clear flush_l1d
+bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit
+bogomips : 5792.29
+clflush size : 64
+cache_alignment : 64
+address sizes : 46 bits physical, 48 bits virtual
+power management:
+
+processor : 23
+vendor_id : GenuineIntel
+cpu family : 6
+model : 45
+model name : Intel(R) Xeon(R) CPU E5-2667 0 @ 2.90GHz
+stepping : 7
+microcode : 0x718
+cpu MHz : 3195.640
+cache size : 15360 KB
+physical id : 1
+siblings : 12
+core id : 5
+cpu cores : 6
+apicid : 43
+initial apicid : 43
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm epb pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts md_clear flush_l1d
+bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit
+bogomips : 5792.29
+clflush size : 64
+cache_alignment : 64
+address sizes : 46 bits physical, 48 bits virtual
+power management:
+
+MemTotal: 65879492 kB
+MemFree: 10395980 kB
+MemAvailable: 59790724 kB
+Buffers: 12390688 kB
+Cached: 18542568 kB
+SwapCached: 37680 kB
+Active: 20395936 kB
+Inactive: 14205172 kB
+Active(anon): 3459064 kB
+Inactive(anon): 165896 kB
+Active(file): 16936872 kB
+Inactive(file): 14039276 kB
+Unevictable: 48 kB
+Mlocked: 48 kB
+SwapTotal: 4194300 kB
+SwapFree: 3334988 kB
+Dirty: 13300 kB
+Writeback: 0 kB
+AnonPages: 3648112 kB
+Mapped: 555304 kB
+Shmem: 784 kB
+KReclaimable: 19083648 kB
+Slab: 20438420 kB
+SReclaimable: 19083648 kB
+SUnreclaim: 1354772 kB
+KernelStack: 16012 kB
+PageTables: 33208 kB
+NFS_Unstable: 0 kB
+Bounce: 0 kB
+WritebackTmp: 0 kB
+CommitLimit: 37134044 kB
+Committed_AS: 10963564 kB
+VmallocTotal: 34359738367 kB
+VmallocUsed: 161980 kB
+VmallocChunk: 0 kB
+Percpu: 137728 kB
+HardwareCorrupted: 0 kB
+AnonHugePages: 0 kB
+ShmemHugePages: 0 kB
+ShmemPmdMapped: 0 kB
+FileHugePages: 0 kB
+FilePmdMapped: 0 kB
+CmaTotal: 0 kB
+CmaFree: 0 kB
+HugePages_Total: 0
+HugePages_Free: 0
+HugePages_Rsvd: 0
+HugePages_Surp: 0
+Hugepagesize: 2048 kB
+Hugetlb: 0 kB
+DirectMap4k: 10120980 kB
+DirectMap2M: 56909824 kB
+DirectMap1G: 0 kB
+$ ls -a
+.
+..
+.git
+.gitattributes
+.github
+.gitignore
+.gitlab-ci.yml
+.mailmap
+.merlin.in
+.ocamlformat
+.ocamlinit
+CODE_OF_CONDUCT.md
+CONTRIBUTING.md
+CREDITS
+INSTALL.md
+LICENSE
+META.coq.in
+Makefile
+Makefile.build
+Makefile.checker
+Makefile.ci
+Makefile.common
+Makefile.dev
+Makefile.doc
+Makefile.dune
+Makefile.ide
+Makefile.install
+Makefile.make
+Makefile.vofiles
+README.md
+_build_ci
+_install_ci
+azure-pipelines.yml
+checker
+clib
+config
+configure
+configure.ml
+coq-doc.opam
+coq.opam
+coq.opam.docker
+coqide-server.opam
+coqide.opam
+coqpp
+default.nix
+dev
+doc
+dune
+dune-project
+engine
+gramlib
+ide
+install.sh
+interp
+kernel
+lib
+library
+man
+parsing
+plugins
+pretyping
+printing
+proofs
+shell.nix
+stm
+tactics
+test-suite
+theories
+tools
+topbin
+toplevel
+user-contrib
+vernac
+$ printenv -0 | sort -z | tr '\0' '\n'
+BASE_ONLY_OPAM=elpi.1.11.0
+BASE_OPAM=num zarith.1.9.1 ocamlfind.1.8.1 ounit2.2.2.3 odoc.1.5.0
+BASE_OPAM_EDGE=dune.2.5.1 dune-release.1.3.3 ocamlformat.0.14.2
+CACHEKEY=bionic_coq-V2020-08-28-V92
+CI=true
+CI_API_V4_URL=https://gitlab.com/api/v4
+CI_BUILD_BEFORE_SHA=727d9e5de2b64fd98bc085089b92891bcbad095f
+CI_BUILD_ID=713656562
+CI_BUILD_NAME=plugin:ci-metacoq
+CI_BUILD_REF=fdbbc0cbc3906704e6e4e92d5bf2f6ffe8476357
+CI_BUILD_REF_NAME=pr-12653
+CI_BUILD_REF_SLUG=pr-12653
+CI_BUILD_STAGE=stage-3
+CI_BUILD_TOKEN=[MASKED]
+CI_COMMIT_BEFORE_SHA=727d9e5de2b64fd98bc085089b92891bcbad095f
+CI_COMMIT_BRANCH=pr-12653
+CI_COMMIT_DESCRIPTION=
+Bot merge 0d30f79268fea18ef99c040a859956f61c3d978a and 7c1779e124fe4bf2733af12488b18bee92840127
+CI_COMMIT_MESSAGE=[CI merge] PR #12653: Syntax for specifying cumulative inductives
+
+Bot merge 0d30f79268fea18ef99c040a859956f61c3d978a and 7c1779e124fe4bf2733af12488b18bee92840127
+
+CI_COMMIT_REF_NAME=pr-12653
+CI_COMMIT_REF_PROTECTED=false
+CI_COMMIT_REF_SLUG=pr-12653
+CI_COMMIT_SHA=fdbbc0cbc3906704e6e4e92d5bf2f6ffe8476357
+CI_COMMIT_SHORT_SHA=fdbbc0cb
+CI_COMMIT_TITLE=[CI merge] PR #12653: Syntax for specifying cumulative inductives
+CI_CONFIG_PATH=.gitlab-ci.yml
+CI_DEFAULT_BRANCH=master
+CI_DISPOSABLE_ENVIRONMENT=true
+CI_JOB_ID=713656562
+CI_JOB_JWT=[MASKED]
+CI_JOB_NAME=plugin:ci-metacoq
+CI_JOB_STAGE=stage-3
+CI_JOB_TOKEN=[MASKED]
+CI_JOB_URL=https://gitlab.com/coq/coq/-/jobs/713656562
+CI_NODE_TOTAL=1
+CI_OPAM=menhir.20190626 ocamlgraph.1.8.8
+CI_PAGES_DOMAIN=gitlab.io
+CI_PAGES_URL=https://coq.gitlab.io/coq
+CI_PIPELINE_ID=184301476
+CI_PIPELINE_IID=17942
+CI_PIPELINE_SOURCE=push
+CI_PIPELINE_URL=https://gitlab.com/coq/coq/-/pipelines/184301476
+CI_PROJECT_DIR=/builds/coq/coq
+CI_PROJECT_ID=6138686
+CI_PROJECT_NAME=coq
+CI_PROJECT_NAMESPACE=coq
+CI_PROJECT_PATH=coq/coq
+CI_PROJECT_PATH_SLUG=coq-coq
+CI_PROJECT_REPOSITORY_LANGUAGES=ocaml,coq,shell,tex,c
+CI_PROJECT_ROOT_NAMESPACE=coq
+CI_PROJECT_TITLE=coq
+CI_PROJECT_URL=https://gitlab.com/coq/coq
+CI_PROJECT_VISIBILITY=public
+CI_REGISTRY=registry.gitlab.com
+CI_REGISTRY_IMAGE=registry.gitlab.com/coq/coq
+CI_REGISTRY_PASSWORD=[MASKED]
+CI_REGISTRY_USER=gitlab-ci-token
+CI_REPOSITORY_URL=https://gitlab-ci-token:[MASKED]@gitlab.com/coq/coq.git
+CI_RUNNER_DESCRIPTION=roquableu
+CI_RUNNER_EXECUTABLE_ARCH=linux/amd64
+CI_RUNNER_ID=816543
+CI_RUNNER_REVISION=fa86510e
+CI_RUNNER_TAGS=
+CI_RUNNER_VERSION=11.9.2
+CI_SERVER=yes
+CI_SERVER_HOST=gitlab.com
+CI_SERVER_NAME=GitLab
+CI_SERVER_PORT=443
+CI_SERVER_PROTOCOL=https
+CI_SERVER_REVISION=e937f778b66
+CI_SERVER_TLS_CA_FILE=/builds/coq/coq.tmp/CI_SERVER_TLS_CA_FILE
+CI_SERVER_URL=https://gitlab.com
+CI_SERVER_VERSION=13.4.0-pre
+CI_SERVER_VERSION_MAJOR=13
+CI_SERVER_VERSION_MINOR=4
+CI_SERVER_VERSION_PATCH=0
+COMPILER=4.05.0
+COMPILER_EDGE=4.10.0
+COQIDE_OPAM=cairo2.0.6.1 lablgtk3-sourceview3.3.1.0
+DEBIAN_FRONTEND=noninteractive
+FF_K8S_USE_ENTRYPOINT_OVER_COMMAND=true
+FULL_CI=true
+GITLAB_CI=true
+GITLAB_FEATURES=audit_events,blocked_issues,burndown_charts,code_owners,code_review_analytics,contribution_analytics,description_diffs,elastic_search,group_activity_analytics,group_bulk_edit,group_burndown_charts,group_webhooks,issuable_default_templates,issue_weights,iterations,jenkins_integration,ldap_group_sync,member_lock,merge_request_approvers,milestone_charts,multiple_issue_assignees,multiple_ldap_servers,multiple_merge_request_assignees,project_merge_request_analytics,protected_refs_for_users,push_rules,repository_mirrors,repository_size_limit,seat_link,send_emails_from_admin_area,scoped_issue_board,usage_quotas,visual_review_app,wip_limits,adjourned_deletion_for_projects_and_groups,admin_audit_log,auditor_user,blocking_merge_requests,board_assignee_lists,board_milestone_lists,ci_cd_projects,ci_secrets_management,cluster_agents,cluster_deployments,code_owner_approval_required,commit_committer_check,compliance_framework,cross_project_pipelines,custom_file_templates,custom_file_templates_for_namespace,custom_project_templates,cycle_analytics_for_groups,db_load_balancing,default_branch_protection_restriction_in_groups,default_project_deletion_protection,dependency_proxy,deploy_board,disable_name_update_for_users,email_additional_text,epics,extended_audit_events,external_authorization_service_api_management,feature_flags,file_locks,geo,generic_alert_fingerprinting,github_project_service_integration,group_allowed_email_domains,group_coverage_reports,group_forking_protection,group_ip_restriction,group_merge_request_analytics,group_project_templates,group_saml,issues_analytics,jira_dev_panel_integration,jira_issues_integration,ldap_group_sync_filter,merge_pipelines,merge_request_performance_metrics,admin_merge_request_approvers_rules,merge_trains,metrics_reports,multiple_approval_rules,multiple_group_issue_boards,object_storage,operations_dashboard,opsgenie_integration,package_forwarding,pages_size_limit,productivity_analytics,project_aliases,protected_environments,reject_unsigned_commits,required_ci_templates,scoped_labels,smartcard_auth,group_timelogs,type_of_work_analytics,unprotection_restrictions,ci_project_subscriptions,container_scanning,coverage_fuzzing,credentials_inventory,dast,dependency_scanning,enterprise_templates,api_fuzzing,group_level_compliance_dashboard,incident_management,insights,issuable_health_status,license_scanning,personal_access_token_api_management,personal_access_token_expiration_policy,enforce_pat_expiration,prometheus_alerts,pseudonymizer,release_evidence_test_artifacts,report_approver_rules,requirements,sast,secret_detection,security_dashboard,security_on_demand_scans,status_page,subepics,threat_monitoring,tracing,quality_management
+GITLAB_USER_EMAIL=gaetan.gilbert@skyskimmer.net
+GITLAB_USER_ID=1343245
+GITLAB_USER_LOGIN=SkySkimmer
+GITLAB_USER_NAME=Gaëtan Gilbert
+GIT_DEPTH=10
+HOME=/root
+HOSTNAME=runner-curNbQZR-project-6138686-concurrent-1
+IMAGE=registry.gitlab.com/coq/coq:bionic_coq-V2020-08-28-V92
+NJOBS=2
+OLDPWD=/
+OPAMJOBS=2
+OPAMROOT=/root/.opamcache
+OPAMROOTISOK=true
+OPAMYES=true
+OPAM_SWITCH=base
+OPAM_VARIANT=
+PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
+PWD=/builds/coq/coq
+SHLVL=1
+SKIP_DOCKER=true
+UNRELIABLE=enabled
+WINDOWS=enabled
+WINDOWS_ALL_ADDONS=disabled
+_=/usr/bin/printenv
+$ declare -A switch_table
+$ switch_table=( ["base"]="$COMPILER" ["edge"]="$COMPILER_EDGE" )
+$ opam switch set -y "${switch_table[$OPAM_SWITCH]}$OPAM_VARIANT"
+# Run eval $(opam env) to update the current shell environment
+$ eval $(opam env)
+$ opam list
+# Packages matching: installed
+# Name # Installed # Synopsis
+astring 0.8.5 Alternative String module for OCaml
+base-bigarray base
+base-bytes base Bytes library distributed with the OCaml compiler
+base-num base Num library distributed with the OCaml compiler
+base-threads base
+base-unix base
+cairo2 0.6.1 Binding to Cairo, a 2D Vector Graphics Library
+camlp5 7.12 Preprocessor-pretty-printer of OCaml
+cmdliner 1.0.4 Declarative definition of command line interfaces for OCaml
+conf-cairo 1 Virtual package relying on a Cairo system installation
+conf-gmp 1 Virtual package relying on a GMP lib system installation
+conf-gtk3 18 Virtual package relying on GTK+ 3
+conf-gtksourceview3 0+2 Virtual package relying on a GtkSourceView-3 system installation
+conf-m4 1 Virtual package relying on m4
+conf-perl 1 Virtual package relying on perl
+conf-pkg-config 1.3 Virtual package relying on pkg-config installation
+cppo 1.6.6 Code preprocessor like cpp for OCaml
+dune 2.7.0 Fast, portable, and opinionated build system
+dune-configurator 2.7.0 Helper library for gathering system configuration
+elpi 1.11.0 ELPI - Embeddable λProlog Interpreter
+fpath 0.7.2 File system paths for OCaml
+lablgtk3 3.1.0 OCaml interface to GTK+3
+lablgtk3-sourceview3 3.1.0 OCaml interface to GTK+ gtksourceview library
+menhir 20190626 An LR(1) parser generator
+num 0 The Num library for arbitrary-precision integer and rational arithmetic
+ocaml 4.05.0 The OCaml compiler (virtual package)
+ocaml-base-compiler 4.05.0 Official 4.05.0 release
+ocaml-compiler-libs v0.12.1 OCaml compiler libraries repackaged
+ocaml-config 1 OCaml Switch Configuration
+ocaml-migrate-parsetree 1.7.3 Convert OCaml parsetrees between different versions
+ocaml-secondary-compiler 4.08.1-1 OCaml 4.08.1 Secondary Switch Compiler
+ocamlbuild 0.14.0 OCamlbuild is a build system with builtin rules to easily build most OCaml projects.
+ocamlfind 1.8.1 A library manager for OCaml
+ocamlfind-secondary 1.8.1 ocamlfind support for ocaml-secondary-compiler
+ocamlgraph 1.8.8 A generic graph library for OCaml
+odoc 1.5.0 OCaml documentation generator
+ounit2 2.2.3 OUnit testing framework
+ppx_derivers 1.2.1 Shared [@@deriving] plugin registry
+ppx_deriving 4.5 Type-driven code generation for OCaml >=4.02.2
+ppx_tools 5.0+4.05.0 Tools for authors of ppx rewriters and other syntactic tools
+ppxfind 1.4 Tool combining ocamlfind and ppx
+ppxlib 0.15.0 Standard library for ppx rewriters
+re 1.9.0 RE is a regular expression library for OCaml
+result 1.5 Compatibility Result module
+seq 0.2.2 Compatibility package for OCaml's standard iterator type starting from 4.07
+sexplib0 v0.14.0 Library containing the definition of S-expressions and some base converters
+stdlib-shims 0.1.0 Backport some of the new stdlib features to older compiler
+topkg 1.0.2 The transitory OCaml software packager
+tyxml 4.4.0 TyXML is a library for building correct HTML and SVG documents
+uchar 0.0.2 Compatibility library for OCaml's Uchar module
+uutf 1.0.2 Non-blocking streaming Unicode codec for OCaml
+zarith 1.9.1 Implements arithmetic and logical operations over arbitrary-precision integers
+$ opam config list
+
+<><> Global opam variables ><><><><><><><><><><><><><><><><><><><><><><><><><><>
+arch x86_64 # Inferred from system
+jobs 2 # The number of parallel jobs set up in opam configuration
+make make # The 'make' command to use
+opam-version 2.0.6 # The currently running opam version
+os linux # Inferred from system
+os-distribution ubuntu # Inferred from system
+os-family debian # Inferred from system
+os-version 18.04 # Inferred from system
+root /root/.opamcache # The current opam root directory
+switch 4.05.0 # The identifier of the current switch
+sys-ocaml-version # OCaml version present on your system independently of opam, if any
+
+<><> Configuration variables from the current switch ><><><><><><><><><><><><><>
+prefix /root/.opamcache/4.05.0
+lib /root/.opamcache/4.05.0/lib
+bin /root/.opamcache/4.05.0/bin
+sbin /root/.opamcache/4.05.0/sbin
+share /root/.opamcache/4.05.0/share
+doc /root/.opamcache/4.05.0/doc
+etc /root/.opamcache/4.05.0/etc
+man /root/.opamcache/4.05.0/man
+toplevel /root/.opamcache/4.05.0/lib/toplevel
+stublibs /root/.opamcache/4.05.0/lib/stublibs
+user root
+group root
+
+<><> Package variables ('opam config list PKG' to show) <><><><><><><><><><><><>
+PKG:name # Name of the package
+PKG:version # Version of the package
+PKG:depends # Resolved direct dependencies of the package
+PKG:installed # Whether the package is installed
+PKG:enable # Takes the value "enable" or "disable" depending on whether the package is installed
+PKG:pinned # Whether the package is pinned
+PKG:bin # Binary directory for this package
+PKG:sbin # System binary directory for this package
+PKG:lib # Library directory for this package
+PKG:man # Man directory for this package
+PKG:doc # Doc directory for this package
+PKG:share # Share directory for this package
+PKG:etc # Etc directory for this package
+PKG:build # Directory where the package was built
+PKG:hash # Hash of the package archive
+PKG:dev # True if this is a development package
+PKG:build-id # A hash identifying the precise package version with all its dependencies
+$ set -e
+$ echo 'start:coq.test'
+start:coq.test
+$ make -f Makefile.ci -j "$NJOBS" "${CI_JOB_NAME#*:}"
+./dev/ci/ci-wrapper.sh equations
+++ : 2
+++ export NJOBS
+++ '[' -n true ']'
+++ export OCAMLPATH=/builds/coq/coq/_install_ci/lib:
+++ OCAMLPATH=/builds/coq/coq/_install_ci/lib:
+++ export COQBIN=/builds/coq/coq/_install_ci/bin
+++ COQBIN=/builds/coq/coq/_install_ci/bin
+++ export CI_BRANCH=pr-12653
+++ CI_BRANCH=pr-12653
+++ [[ 12653 =~ ^[0-9]*$ ]]
+++ export CI_PULL_REQUEST=12653
+++ CI_PULL_REQUEST=12653
+++ export PATH=/builds/coq/coq/_install_ci/bin:/root/.opamcache/4.05.0/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
+++ PATH=/builds/coq/coq/_install_ci/bin:/root/.opamcache/4.05.0/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
+++ export COQBIN=/builds/coq/coq/_install_ci/bin/
+++ COQBIN=/builds/coq/coq/_install_ci/bin/
+++ ls -l /builds/coq/coq/_install_ci/bin/
+total 377964
+-rwxr-xr-x 1 root root 1885376 Sep 1 11:46 coq-tex
+-rwxr-xr-x 1 root root 2500248 Sep 1 11:46 coq_makefile
+-rwxr-xr-x 1 root root 24673120 Sep 1 11:46 coqc
+-rwxr-xr-x 1 root root 9648760 Sep 1 11:46 coqchk
+-rwxr-xr-x 1 root root 5855160 Sep 1 11:46 coqdep
+-rwxr-xr-x 1 root root 4413792 Sep 1 11:46 coqdoc
+-rwxr-xr-x 1 root root 11526312 Sep 1 11:47 coqide
+-rwxr-xr-x 1 root root 25110448 Sep 1 11:47 coqidetop
+-rwxr-xr-x 1 root root 25110448 Sep 1 11:47 coqidetop.opt
+-rwxr-xr-x 1 root root 449295 Sep 1 11:46 coqpp
+-rwxr-xr-x 1 root root 32153472 Sep 1 11:47 coqproofworker.byte
+-rwxr-xr-x 1 root root 24673424 Sep 1 11:46 coqproofworker.opt
+-rwxr-xr-x 1 root root 32153472 Sep 1 11:47 coqqueryworker.byte
+-rwxr-xr-x 1 root root 24673424 Sep 1 11:46 coqqueryworker.opt
+-rwxr-xr-x 1 root root 32153477 Sep 1 11:47 coqtacticworker.byte
+-rwxr-xr-x 1 root root 24673448 Sep 1 11:46 coqtacticworker.opt
+-rwxr-xr-x 1 root root 24673288 Sep 1 11:46 coqtop
+-rwxr-xr-x 1 root root 41805680 Sep 1 11:47 coqtop.byte
+-rwxr-xr-x 1 root root 24673288 Sep 1 11:46 coqtop.opt
+-rwxr-xr-x 1 root root 1821312 Sep 1 11:46 coqwc
+-rwxr-xr-x 1 root root 2827416 Sep 1 11:46 coqworkmgr
+-rwxr-xr-x 1 root root 5905992 Sep 1 11:47 fake_ide
+-rwxr-xr-x 1 root root 1757920 Sep 1 11:46 ocamllibdep
+-rwxr-xr-x 1 root root 1877056 Sep 1 11:46 votour
+++ CI_BUILD_DIR=/builds/coq/coq/_build_ci
+++ ls -l /builds/coq/coq/_build_ci
+total 4
+drwxr-xr-x 8 root root 4096 Sep 1 11:51 equations
+++ set +x
++ git_download equations
++ local PROJECT=equations
++ local DEST=/builds/coq/coq/_build_ci/equations
++ local GITURL_VAR=equations_CI_GITURL
++ local GITURL=https://github.com/SkySkimmer/Coq-Equations
++ local REF_VAR=equations_CI_REF
++ local REF=cumul-syntax
++ '[' -d /builds/coq/coq/_build_ci/equations ']'
++ echo 'Warning: download and unpacking of equations skipped because /builds/coq/coq/_build_ci/equations already exists.'
+Warning: download and unpacking of equations skipped because /builds/coq/coq/_build_ci/equations already exists.
++ cd /builds/coq/coq/_build_ci/equations
++ ./configure.sh coq
+Building Coq version (default)
++ make ci
++ '[' -z x ']'
++ command make ci
++ make ci
+make[1]: Entering directory '/builds/coq/coq/_build_ci/equations'
+make[2]: Nothing to be done for 'real-all'.
+cd test-suite && make
+cd examples && make
+make[2]: Entering directory '/builds/coq/coq/_build_ci/equations/test-suite'
+make[2]: Entering directory '/builds/coq/coq/_build_ci/equations/examples'
+make[3]: Nothing to be done for 'real-all'.
+make[2]: Leaving directory '/builds/coq/coq/_build_ci/equations/examples'
+make[3]: Nothing to be done for 'real-all'.
+make[2]: Leaving directory '/builds/coq/coq/_build_ci/equations/test-suite'
+make[1]: Leaving directory '/builds/coq/coq/_build_ci/equations'
++ make install
++ '[' -z x ']'
++ command make install
++ make install
+make[1]: Entering directory '/builds/coq/coq/_build_ci/equations'
+INSTALL theories/Init.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations/
+INSTALL theories/Signature.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations/
+INSTALL theories/CoreTactics.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations/
+INSTALL theories/Prop/Logic.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Prop
+INSTALL theories/Prop/Classes.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Prop
+INSTALL theories/Prop/EqDec.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Prop
+INSTALL theories/Prop/EqDecInstances.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Prop
+INSTALL theories/Prop/Subterm.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Prop
+INSTALL theories/Prop/DepElim.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Prop
+INSTALL theories/Prop/Tactics.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Prop
+INSTALL theories/Prop/Constants.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Prop
+INSTALL theories/Prop/NoConfusion.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Prop
+INSTALL theories/Prop/FunctionalInduction.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Prop
+INSTALL theories/Prop/Loader.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Prop
+INSTALL theories/Prop/Telescopes.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Prop
+INSTALL theories/Prop/TransparentEquations.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Prop
+INSTALL theories/Prop/OpaqueEquations.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Prop
+INSTALL theories/Equations.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations/
+INSTALL theories/Type/Logic.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Type
+INSTALL theories/Type/FunctionalExtensionality.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Type
+INSTALL theories/Type/Relation.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Type
+INSTALL theories/Type/Relation_Properties.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Type
+INSTALL theories/Type/WellFounded.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Type
+INSTALL theories/Type/Classes.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Type
+INSTALL theories/Type/EqDec.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Type
+INSTALL theories/Type/DepElim.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Type
+INSTALL theories/Type/Tactics.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Type
+INSTALL theories/Type/Subterm.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Type
+INSTALL theories/Type/Constants.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Type
+INSTALL theories/Type/EqDecInstances.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Type
+INSTALL theories/Type/NoConfusion.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Type
+INSTALL theories/Type/FunctionalInduction.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Type
+INSTALL theories/Type/Loader.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Type
+INSTALL theories/Type/Telescopes.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Type
+INSTALL theories/Type/WellFoundedInstances.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Type
+INSTALL theories/Type/All.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Type
+INSTALL theories/Init.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations/
+INSTALL theories/Signature.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations/
+INSTALL theories/CoreTactics.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations/
+INSTALL theories/Prop/Logic.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Prop
+INSTALL theories/Prop/Classes.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Prop
+INSTALL theories/Prop/EqDec.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Prop
+INSTALL theories/Prop/EqDecInstances.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Prop
+INSTALL theories/Prop/Subterm.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Prop
+INSTALL theories/Prop/DepElim.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Prop
+INSTALL theories/Prop/Tactics.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Prop
+INSTALL theories/Prop/Constants.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Prop
+INSTALL theories/Prop/NoConfusion.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Prop
+INSTALL theories/Prop/FunctionalInduction.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Prop
+INSTALL theories/Prop/Loader.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Prop
+INSTALL theories/Prop/Telescopes.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Prop
+INSTALL theories/Prop/TransparentEquations.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Prop
+INSTALL theories/Prop/OpaqueEquations.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Prop
+INSTALL theories/Equations.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations/
+INSTALL theories/Type/Logic.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Type
+INSTALL theories/Type/FunctionalExtensionality.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Type
+INSTALL theories/Type/Relation.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Type
+INSTALL theories/Type/Relation_Properties.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Type
+INSTALL theories/Type/WellFounded.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Type
+INSTALL theories/Type/Classes.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Type
+INSTALL theories/Type/EqDec.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Type
+INSTALL theories/Type/DepElim.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Type
+INSTALL theories/Type/Tactics.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Type
+INSTALL theories/Type/Subterm.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Type
+INSTALL theories/Type/Constants.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Type
+INSTALL theories/Type/EqDecInstances.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Type
+INSTALL theories/Type/NoConfusion.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Type
+INSTALL theories/Type/FunctionalInduction.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Type
+INSTALL theories/Type/Loader.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Type
+INSTALL theories/Type/Telescopes.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Type
+INSTALL theories/Type/WellFoundedInstances.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Type
+INSTALL theories/Type/All.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Type
+INSTALL theories/Init.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations/
+INSTALL theories/Signature.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations/
+INSTALL theories/CoreTactics.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations/
+INSTALL theories/Prop/Logic.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Prop
+INSTALL theories/Prop/Classes.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Prop
+INSTALL theories/Prop/EqDec.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Prop
+INSTALL theories/Prop/EqDecInstances.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Prop
+INSTALL theories/Prop/Subterm.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Prop
+INSTALL theories/Prop/DepElim.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Prop
+INSTALL theories/Prop/Tactics.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Prop
+INSTALL theories/Prop/Constants.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Prop
+INSTALL theories/Prop/NoConfusion.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Prop
+INSTALL theories/Prop/FunctionalInduction.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Prop
+INSTALL theories/Prop/Loader.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Prop
+INSTALL theories/Prop/Telescopes.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Prop
+INSTALL theories/Prop/TransparentEquations.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Prop
+INSTALL theories/Prop/OpaqueEquations.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Prop
+INSTALL theories/Equations.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations/
+INSTALL theories/Type/Logic.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Type
+INSTALL theories/Type/FunctionalExtensionality.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Type
+INSTALL theories/Type/Relation.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Type
+INSTALL theories/Type/Relation_Properties.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Type
+INSTALL theories/Type/WellFounded.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Type
+INSTALL theories/Type/Classes.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Type
+INSTALL theories/Type/EqDec.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Type
+INSTALL theories/Type/DepElim.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Type
+INSTALL theories/Type/Tactics.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Type
+INSTALL theories/Type/Subterm.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Type
+INSTALL theories/Type/Constants.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Type
+INSTALL theories/Type/EqDecInstances.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Type
+INSTALL theories/Type/NoConfusion.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Type
+INSTALL theories/Type/FunctionalInduction.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Type
+INSTALL theories/Type/Loader.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Type
+INSTALL theories/Type/Telescopes.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Type
+INSTALL theories/Type/WellFoundedInstances.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Type
+INSTALL theories/Type/All.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations//Type
+INSTALL src/g_equations.cmi /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations/
+INSTALL src/equations_common.cmi /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations/
+INSTALL src/ederive.cmi /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations/
+INSTALL src/sigma_types.cmi /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations/
+INSTALL src/subterm.cmi /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations/
+INSTALL src/eqdec.cmi /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations/
+INSTALL src/depelim.cmi /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations/
+INSTALL src/syntax.cmi /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations/
+INSTALL src/context_map.cmi /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations/
+INSTALL src/simplify.cmi /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations/
+INSTALL src/splitting.cmi /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations/
+INSTALL src/covering.cmi /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations/
+INSTALL src/principles_proofs.cmi /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations/
+INSTALL src/principles.cmi /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations/
+INSTALL src/equations.cmi /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations/
+INSTALL src/noconf_hom.cmi /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations/
+INSTALL src/noconf.cmi /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations/
+INSTALL src/extra_tactics.cmi /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations/
+INSTALL src/equations_plugin_mod.cmi /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations/
+INSTALL src/equations_common.cmi /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations/
+INSTALL src/ederive.cmi /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations/
+INSTALL src/sigma_types.cmi /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations/
+INSTALL src/subterm.cmi /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations/
+INSTALL src/eqdec.cmi /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations/
+INSTALL src/depelim.cmi /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations/
+INSTALL src/syntax.cmi /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations/
+INSTALL src/context_map.cmi /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations/
+INSTALL src/simplify.cmi /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations/
+INSTALL src/splitting.cmi /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations/
+INSTALL src/covering.cmi /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations/
+INSTALL src/principles_proofs.cmi /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations/
+INSTALL src/principles.cmi /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations/
+INSTALL src/equations.cmi /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations/
+INSTALL src/noconf_hom.cmi /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations/
+INSTALL src/noconf.cmi /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations/
+INSTALL src/extra_tactics.cmi /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations/
+INSTALL src/equations_plugin.cmxs /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations/
+INSTALL src/equations_plugin.cmxa /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations/
+INSTALL src/g_equations.cmx /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations/
+INSTALL src/equations_common.cmx /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations/
+INSTALL src/ederive.cmx /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations/
+INSTALL src/sigma_types.cmx /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations/
+INSTALL src/subterm.cmx /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations/
+INSTALL src/eqdec.cmx /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations/
+INSTALL src/depelim.cmx /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations/
+INSTALL src/syntax.cmx /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations/
+INSTALL src/context_map.cmx /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations/
+INSTALL src/simplify.cmx /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations/
+INSTALL src/splitting.cmx /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations/
+INSTALL src/covering.cmx /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations/
+INSTALL src/principles_proofs.cmx /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations/
+INSTALL src/principles.cmx /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations/
+INSTALL src/equations.cmx /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations/
+INSTALL src/noconf_hom.cmx /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations/
+INSTALL src/noconf.cmx /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations/
+INSTALL src/extra_tactics.cmx /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations/
+INSTALL src/equations_plugin_mod.cmx /builds/coq/coq/_install_ci/lib/coq//user-contrib/Equations/
+make[2]: Entering directory '/builds/coq/coq/_build_ci/equations'
+make[2]: Leaving directory '/builds/coq/coq/_build_ci/equations'
+make[1]: Leaving directory '/builds/coq/coq/_build_ci/equations'
+Aggregating timing log...
+No timing data
+./dev/ci/ci-wrapper.sh metacoq
+++ : 2
+++ export NJOBS
+++ '[' -n true ']'
+++ export OCAMLPATH=/builds/coq/coq/_install_ci/lib:
+++ OCAMLPATH=/builds/coq/coq/_install_ci/lib:
+++ export COQBIN=/builds/coq/coq/_install_ci/bin
+++ COQBIN=/builds/coq/coq/_install_ci/bin
+++ export CI_BRANCH=pr-12653
+++ CI_BRANCH=pr-12653
+++ [[ 12653 =~ ^[0-9]*$ ]]
+++ export CI_PULL_REQUEST=12653
+++ CI_PULL_REQUEST=12653
+++ export PATH=/builds/coq/coq/_install_ci/bin:/root/.opamcache/4.05.0/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
+++ PATH=/builds/coq/coq/_install_ci/bin:/root/.opamcache/4.05.0/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
+++ export COQBIN=/builds/coq/coq/_install_ci/bin/
+++ COQBIN=/builds/coq/coq/_install_ci/bin/
+++ ls -l /builds/coq/coq/_install_ci/bin/
+total 377964
+-rwxr-xr-x 1 root root 1885376 Sep 1 11:46 coq-tex
+-rwxr-xr-x 1 root root 2500248 Sep 1 11:46 coq_makefile
+-rwxr-xr-x 1 root root 24673120 Sep 1 11:46 coqc
+-rwxr-xr-x 1 root root 9648760 Sep 1 11:46 coqchk
+-rwxr-xr-x 1 root root 5855160 Sep 1 11:46 coqdep
+-rwxr-xr-x 1 root root 4413792 Sep 1 11:46 coqdoc
+-rwxr-xr-x 1 root root 11526312 Sep 1 11:47 coqide
+-rwxr-xr-x 1 root root 25110448 Sep 1 11:47 coqidetop
+-rwxr-xr-x 1 root root 25110448 Sep 1 11:47 coqidetop.opt
+-rwxr-xr-x 1 root root 449295 Sep 1 11:46 coqpp
+-rwxr-xr-x 1 root root 32153472 Sep 1 11:47 coqproofworker.byte
+-rwxr-xr-x 1 root root 24673424 Sep 1 11:46 coqproofworker.opt
+-rwxr-xr-x 1 root root 32153472 Sep 1 11:47 coqqueryworker.byte
+-rwxr-xr-x 1 root root 24673424 Sep 1 11:46 coqqueryworker.opt
+-rwxr-xr-x 1 root root 32153477 Sep 1 11:47 coqtacticworker.byte
+-rwxr-xr-x 1 root root 24673448 Sep 1 11:46 coqtacticworker.opt
+-rwxr-xr-x 1 root root 24673288 Sep 1 11:46 coqtop
+-rwxr-xr-x 1 root root 41805680 Sep 1 11:47 coqtop.byte
+-rwxr-xr-x 1 root root 24673288 Sep 1 11:46 coqtop.opt
+-rwxr-xr-x 1 root root 1821312 Sep 1 11:46 coqwc
+-rwxr-xr-x 1 root root 2827416 Sep 1 11:46 coqworkmgr
+-rwxr-xr-x 1 root root 5905992 Sep 1 11:47 fake_ide
+-rwxr-xr-x 1 root root 1757920 Sep 1 11:46 ocamllibdep
+-rwxr-xr-x 1 root root 1877056 Sep 1 11:46 votour
+++ CI_BUILD_DIR=/builds/coq/coq/_build_ci
+++ ls -l /builds/coq/coq/_build_ci
+total 4
+drwxr-xr-x 8 root root 4096 Sep 1 12:34 equations
+++ set +x
++ git_download metacoq
++ local PROJECT=metacoq
++ local DEST=/builds/coq/coq/_build_ci/metacoq
++ local GITURL_VAR=metacoq_CI_GITURL
++ local GITURL=https://github.com/SkySkimmer/metacoq
++ local REF_VAR=metacoq_CI_REF
++ local REF=cumul-syntax
++ '[' -d /builds/coq/coq/_build_ci/metacoq ']'
++ '[' '' = 1 ']'
++ '[' true = '' ']'
++ local ARCHIVEURL_VAR=metacoq_CI_ARCHIVEURL
++ local ARCHIVEURL=https://github.com/SkySkimmer/metacoq/archive
++ mkdir -p /builds/coq/coq/_build_ci/metacoq
++ cd /builds/coq/coq/_build_ci/metacoq
+++ git ls-remote https://github.com/SkySkimmer/metacoq refs/heads/cumul-syntax
+++ cut -f 1
++ local COMMIT=130dee007744c0e743d13613a398cfbe15ad95ff
++ [[ 130dee007744c0e743d13613a398cfbe15ad95ff == '' ]]
++ wget https://github.com/SkySkimmer/metacoq/archive/130dee007744c0e743d13613a398cfbe15ad95ff.tar.gz
+--2020-09-01 12:34:56-- https://github.com/SkySkimmer/metacoq/archive/130dee007744c0e743d13613a398cfbe15ad95ff.tar.gz
+Resolving github.com (github.com)... 140.82.121.3
+Connecting to github.com (github.com)|140.82.121.3|:443... connected.
+HTTP request sent, awaiting response... 302 Found
+Location: https://codeload.github.com/SkySkimmer/metacoq/tar.gz/130dee007744c0e743d13613a398cfbe15ad95ff [following]
+--2020-09-01 12:34:56-- https://codeload.github.com/SkySkimmer/metacoq/tar.gz/130dee007744c0e743d13613a398cfbe15ad95ff
+Resolving codeload.github.com (codeload.github.com)... 140.82.121.9
+Connecting to codeload.github.com (codeload.github.com)|140.82.121.9|:443... connected.
+HTTP request sent, awaiting response... 200 OK
+Length: unspecified [application/x-gzip]
+Saving to: '130dee007744c0e743d13613a398cfbe15ad95ff.tar.gz'
+
+ 0K .......... .......... .......... .......... .......... 1.14M
+ 50K .......... .......... .......... .......... .......... 2.37M
+ 100K .......... .......... .......... .......... .......... 10.9M
+ 150K .......... .......... .......... .......... .......... 10.9M
+ 200K .......... .......... .......... .......... .......... 3.08M
+ 250K .......... .......... .......... .......... .......... 10.9M
+ 300K .......... .......... .......... .......... .......... 11.4M
+ 350K .......... .......... .......... .......... .......... 10.9M
+ 400K .......... .......... .......... .......... .......... 7.25M
+ 450K .......... .......... .......... .......... .......... 9.97M
+ 500K .......... .......... .......... .......... .......... 10.9M
+ 550K .......... .......... .......... .......... .......... 3.39M
+ 600K .......... .......... .......... .......... .......... 10.8M
+ 650K .......... .......... .......... .......... .......... 2.57M
+ 700K .......... .......... .......... .......... .......... 11.4M
+ 750K .......... .......... .......... .......... .......... 10.8M
+ 800K .......... .......... .......... .......... ......... 11.3M=0.2s
+
+2020-09-01 12:34:57 (4.92 MB/s) - '130dee007744c0e743d13613a398cfbe15ad95ff.tar.gz' saved [869537]
+
++ tar xfz 130dee007744c0e743d13613a398cfbe15ad95ff.tar.gz --strip-components=1
++ rm -f 130dee007744c0e743d13613a398cfbe15ad95ff.tar.gz
++ cd /builds/coq/coq/_build_ci/metacoq
++ ./configure.sh local
+make[1]: Entering directory '/builds/coq/coq/_build_ci/metacoq'
+make -C template-coq mrproper
+make[2]: Entering directory '/builds/coq/coq/_build_ci/metacoq/template-coq'
+rm -f Makefile.coq
+rm -f Makefile.plugin
+rm -f Makefile.template
+make[2]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/template-coq'
+make -C pcuic mrproper
+make[2]: Entering directory '/builds/coq/coq/_build_ci/metacoq/pcuic'
+rm -f metacoq-config
+rm -f Makefile.plugin _PluginProject
+rm -f Makefile.pcuic _CoqProject
+make[2]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/pcuic'
+make -C safechecker mrproper
+make[2]: Entering directory '/builds/coq/coq/_build_ci/metacoq/safechecker'
+rm -f metacoq-config
+rm -f Makefile.plugin _PluginProject
+rm -f Makefile.safechecker _CoqProject
+make[2]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/safechecker'
+make -C erasure mrproper
+make[2]: Entering directory '/builds/coq/coq/_build_ci/metacoq/erasure'
+rm -f Makefile.plugin
+rm -f Makefile.erasure
+make[2]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/erasure'
+make -C checker mrproper
+make[2]: Entering directory '/builds/coq/coq/_build_ci/metacoq/checker'
+rm -f Makefile.coq Makefile.plugin _CoqProject _PluginProject
+make[2]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/checker'
+make -C examples mrproper
+make[2]: Entering directory '/builds/coq/coq/_build_ci/metacoq/examples'
+rm -f Makefile.coq
+make[2]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/examples'
+make -C test-suite mrproper
+make[2]: Entering directory '/builds/coq/coq/_build_ci/metacoq/test-suite'
+rm -f Makefile.coq
+make[2]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/test-suite'
+make -C translations mrproper
+make[2]: Entering directory '/builds/coq/coq/_build_ci/metacoq/translations'
+rm -f Makefile.coq
+make[2]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/translations'
+make[1]: Leaving directory '/builds/coq/coq/_build_ci/metacoq'
+Building MetaCoq locally
++ make .merlin
++ '[' -z x ']'
++ command make .merlin
++ make .merlin
+make[1]: Entering directory '/builds/coq/coq/_build_ci/metacoq'
+make -C template-coq .merlin
+make[2]: Entering directory '/builds/coq/coq/_build_ci/metacoq/template-coq'
+coq_makefile -f _PluginProject -o Makefile.plugin
+`which gsed || which sed` -i -e s/coqdeps/coqdeps.plugin/g Makefile.plugin
+make -f Makefile.plugin .merlin
+make[3]: Entering directory '/builds/coq/coq/_build_ci/metacoq/template-coq'
+COQDEP VFILES
+OCAMLLIBDEP gen-src/metacoq_template_plugin.mlpack
+FILL .merlin
+make[4]: Entering directory '/builds/coq/coq/_build_ci/metacoq/template-coq'
+make[4]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/template-coq'
+make[3]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/template-coq'
+make[2]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/template-coq'
+make -C pcuic .merlin
+make[2]: Entering directory '/builds/coq/coq/_build_ci/metacoq/pcuic'
+cat metacoq-config > _PluginProject
+cat _PluginProject.in >> _PluginProject
+coq_makefile -f _PluginProject -o Makefile.plugin
+`which gsed || which sed` -i -e s/coqdeps/coqdeps.plugin/g Makefile.plugin
+make -f Makefile.plugin .merlin
+make[3]: Entering directory '/builds/coq/coq/_build_ci/metacoq/pcuic'
+make[3]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule.
+COQDEP VFILES
+Fatal error: exception Sys_error("../template-coq/build: No such file or directory")
+OCAMLLIBDEP src/metacoq_pcuic_plugin.mlpack
+Uncaught exception: Sys_error("../template-coq/build: No such file or directory")
+FILL .merlin
+make[4]: Entering directory '/builds/coq/coq/_build_ci/metacoq/pcuic'
+COQDEP VFILES
+Fatal error: exception Sys_error("../template-coq/build: No such file or directory")
+OCAMLLIBDEP src/metacoq_pcuic_plugin.mlpack
+Uncaught exception: Sys_error("../template-coq/build: No such file or directory")
+make[4]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/pcuic'
+make[3]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/pcuic'
+make[2]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/pcuic'
+make -C safechecker .merlin
+make[2]: Entering directory '/builds/coq/coq/_build_ci/metacoq/safechecker'
+cat metacoq-config > _PluginProject
+cat _PluginProject.in >> _PluginProject
+coq_makefile -f _PluginProject -o Makefile.plugin
+`which gsed || which sed` -i -e s/coqdeps/coqdeps.plugin/g Makefile.plugin
+make -f Makefile.plugin .merlin
+make[3]: Entering directory '/builds/coq/coq/_build_ci/metacoq/safechecker'
+make[3]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule.
+COQDEP VFILES
+Fatal error: exception Sys_error("../template-coq/build: No such file or directory")
+COQPP src/g_metacoq_safechecker.mlg
+OCAMLLIBDEP src/metacoq_safechecker_plugin.mlpack
+Uncaught exception: Sys_error("../template-coq/build: No such file or directory")
+CAMLDEP src/g_metacoq_safechecker.ml
+Bad -I option: ../template-coq/build: No such file or directory
+FILL .merlin
+make[4]: Entering directory '/builds/coq/coq/_build_ci/metacoq/safechecker'
+COQDEP VFILES
+Fatal error: exception Sys_error("../template-coq/build: No such file or directory")
+OCAMLLIBDEP src/metacoq_safechecker_plugin.mlpack
+Uncaught exception: Sys_error("../template-coq/build: No such file or directory")
+CAMLDEP src/g_metacoq_safechecker.ml
+Bad -I option: ../template-coq/build: No such file or directory
+make[4]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/safechecker'
+make[3]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/safechecker'
+make[2]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/safechecker'
+make -C erasure .merlin
+make[2]: Entering directory '/builds/coq/coq/_build_ci/metacoq/erasure'
+cat metacoq-config > _PluginProject
+cat _PluginProject.in >> _PluginProject
+coq_makefile -f _PluginProject -o Makefile.plugin
+`which gsed || which sed` -i -e s/coqdeps/coqdeps.plugin/g Makefile.plugin
+make -f Makefile.plugin .merlin
+make[3]: Entering directory '/builds/coq/coq/_build_ci/metacoq/erasure'
+make[3]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule.
+COQDEP VFILES
+Fatal error: exception Sys_error("../template-coq/build: No such file or directory")
+COQPP src/g_metacoq_erasure.mlg
+OCAMLLIBDEP src/metacoq_erasure_plugin.mlpack
+Uncaught exception: Sys_error("../template-coq/build: No such file or directory")
+CAMLDEP src/g_metacoq_erasure.ml
+Bad -I option: ../template-coq/build: No such file or directory
+FILL .merlin
+make[4]: Entering directory '/builds/coq/coq/_build_ci/metacoq/erasure'
+COQDEP VFILES
+Fatal error: exception Sys_error("../template-coq/build: No such file or directory")
+OCAMLLIBDEP src/metacoq_erasure_plugin.mlpack
+Uncaught exception: Sys_error("../template-coq/build: No such file or directory")
+CAMLDEP src/g_metacoq_erasure.ml
+Bad -I option: ../template-coq/build: No such file or directory
+make[4]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/erasure'
+make[3]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/erasure'
+make[2]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/erasure'
+make -C checker .merlin
+make[2]: Entering directory '/builds/coq/coq/_build_ci/metacoq/checker'
+cat metacoq-config > _PluginProject
+cat _PluginProject.in >> _PluginProject
+coq_makefile -f _PluginProject -o Makefile.plugin
+make -f Makefile.plugin .merlin
+make[3]: Entering directory '/builds/coq/coq/_build_ci/metacoq/checker'
+make[3]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule.
+COQDEP VFILES
+Fatal error: exception Sys_error("../template-coq/build: No such file or directory")
+COQPP src/g_metacoq_checker.mlg
+OCAMLLIBDEP src/metacoq_checker_plugin.mlpack
+Uncaught exception: Sys_error("../template-coq/build: No such file or directory")
+CAMLDEP src/g_metacoq_checker.ml
+Bad -I option: ../template-coq/build: No such file or directory
+FILL .merlin
+make[4]: Entering directory '/builds/coq/coq/_build_ci/metacoq/checker'
+COQDEP VFILES
+Fatal error: exception Sys_error("../template-coq/build: No such file or directory")
+OCAMLLIBDEP src/metacoq_checker_plugin.mlpack
+Uncaught exception: Sys_error("../template-coq/build: No such file or directory")
+CAMLDEP src/g_metacoq_checker.ml
+Bad -I option: ../template-coq/build: No such file or directory
+make[4]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/checker'
+make[3]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/checker'
+make[2]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/checker'
+make[1]: Leaving directory '/builds/coq/coq/_build_ci/metacoq'
++ make ci-local
++ '[' -z x ']'
++ command make ci-local
++ make ci-local
+make[1]: Entering directory '/builds/coq/coq/_build_ci/metacoq'
+make all test-suite
+make[2]: Entering directory '/builds/coq/coq/_build_ci/metacoq'
+make -C template-coq
+make[3]: Entering directory '/builds/coq/coq/_build_ci/metacoq/template-coq'
+coq_makefile -f _CoqProject -o Makefile.coq
+coq_makefile -f _TemplateCoqProject -o Makefile.template
+`which gsed || which sed` -i -e s/coqdeps/coqdeps.template/g Makefile.template
+make -f Makefile.coq
+make[4]: Entering directory '/builds/coq/coq/_build_ci/metacoq/template-coq'
+COQDEP VFILES
+COQC theories/utils/MCPrelude.v
+COQC theories/utils/MCRelations.v
+theories/utils/MCPrelude.vo (real: 0.09, user: 0.05, sys: 0.04, mem: 63096 ko)
+COQC theories/utils/MCProd.v
+theories/utils/MCRelations.vo (real: 0.09, user: 0.05, sys: 0.04, mem: 68156 ko)
+COQC theories/utils/MCSquash.v
+theories/utils/MCSquash.vo (real: 0.09, user: 0.04, sys: 0.04, mem: 61384 ko)
+COQC theories/utils/MCArith.v
+theories/utils/MCProd.vo (real: 0.14, user: 0.09, sys: 0.04, mem: 88348 ko)
+COQC theories/utils/MCCompare.v
+theories/utils/MCArith.vo (real: 0.70, user: 0.48, sys: 0.22, mem: 404556 ko)
+COQC theories/utils/MCEquality.v
+theories/utils/MCEquality.vo (real: 0.08, user: 0.04, sys: 0.03, mem: 62924 ko)
+COQC theories/utils/LibHypsNaming.v
+theories/utils/LibHypsNaming.vo (real: 0.60, user: 0.42, sys: 0.18, mem: 339136 ko)
+COQC theories/config.v
+theories/config.vo (real: 0.08, user: 0.04, sys: 0.03, mem: 61716 ko)
+COQC theories/monad_utils.v
+theories/monad_utils.vo (real: 0.22, user: 0.14, sys: 0.08, mem: 149456 ko)
+COQC theories/utils/MCList.v
+theories/utils/MCList.vo (real: 1.71, user: 1.47, sys: 0.22, mem: 452340 ko)
+COQC theories/utils/MCOption.v
+theories/utils/MCOption.vo (real: 0.79, user: 0.56, sys: 0.22, mem: 440168 ko)
+COQC theories/utils/All_Forall.v
+theories/utils/MCCompare.vo (real: 6.40, user: 6.04, sys: 0.32, mem: 529900 ko)
+COQC theories/utils/MCString.v
+theories/utils/MCString.vo (real: 0.44, user: 0.30, sys: 0.13, mem: 270156 ko)
+theories/utils/All_Forall.vo (real: 3.03, user: 2.78, sys: 0.23, mem: 465984 ko)
+COQC theories/utils.v
+theories/utils.vo (real: 0.71, user: 0.52, sys: 0.18, mem: 385340 ko)
+COQC theories/utils/wGraph.v
+COQC theories/BasicAst.v
+theories/BasicAst.vo (real: 0.98, user: 0.75, sys: 0.22, mem: 450728 ko)
+COQC theories/Universes.v
+theories/utils/wGraph.vo (real: 5.22, user: 4.72, sys: 0.47, mem: 498552 ko)
+theories/Universes.vo (real: 4.54, user: 4.23, sys: 0.28, mem: 531272 ko)
+COQC theories/common/uGraph.v
+COQC theories/Environment.v
+theories/Environment.vo (real: 1.35, user: 1.10, sys: 0.24, mem: 484172 ko)
+COQC theories/Ast.v
+theories/Ast.vo (real: 1.04, user: 0.79, sys: 0.24, mem: 479940 ko)
+COQC theories/AstUtils.v
+theories/AstUtils.vo (real: 1.24, user: 1.00, sys: 0.23, mem: 485664 ko)
+COQC theories/TemplateMonad/Common.v
+theories/TemplateMonad/Common.vo (real: 0.82, user: 0.60, sys: 0.22, mem: 437492 ko)
+COQC theories/Induction.v
+theories/Induction.vo (real: 1.45, user: 1.18, sys: 0.26, mem: 486324 ko)
+COQC theories/EnvironmentTyping.v
+theories/common/uGraph.vo (real: 6.23, user: 5.85, sys: 0.35, mem: 551516 ko)
+COQC theories/WfInv.v
+theories/WfInv.vo (real: 1.31, user: 1.05, sys: 0.25, mem: 489932 ko)
+COQC theories/TemplateMonad/Core.v
+theories/EnvironmentTyping.vo (real: 2.05, user: 1.77, sys: 0.27, mem: 491968 ko)
+COQC theories/TemplateMonad/Extractable.v
+theories/TemplateMonad/Core.vo (real: 0.97, user: 0.73, sys: 0.24, mem: 481988 ko)
+COQC theories/LiftSubst.v
+theories/TemplateMonad/Extractable.vo (real: 0.95, user: 0.70, sys: 0.23, mem: 481156 ko)
+COQC theories/TemplateMonad.v
+theories/TemplateMonad.vo (real: 0.79, user: 0.54, sys: 0.24, mem: 420452 ko)
+COQC theories/Constants.v
+theories/Constants.vo (real: 1.08, user: 0.82, sys: 0.25, mem: 498504 ko)
+theories/LiftSubst.vo (real: 12.60, user: 11.81, sys: 0.72, mem: 532016 ko)
+COQC theories/UnivSubst.v
+COQC theories/Pretty.v
+theories/Pretty.vo (real: 1.11, user: 0.87, sys: 0.24, mem: 486460 ko)
+theories/UnivSubst.vo (real: 3.38, user: 3.11, sys: 0.24, mem: 490756 ko)
+COQC theories/Typing.v
+COQC theories/Extraction.v
+theories/Extraction.vo (real: 9.78, user: 9.33, sys: 0.41, mem: 571876 ko)
+theories/Typing.vo (real: 53.00, user: 51.78, sys: 0.98, mem: 809012 ko)
+COQC theories/TypingWf.v
+theories/TypingWf.vo (real: 8.46, user: 8.05, sys: 0.36, mem: 556676 ko)
+./update_plugin.sh
+Updating gen-src from src
+Copying from src to gen-src
+Renaming files to camelCase
+Moving All_Forall.ml to all_Forall.ml
+Moving All_Forall.mli to all_Forall.mli
+Moving Ascii.ml to ascii.ml
+Moving Ascii.mli to ascii.mli
+Moving Ast0.ml to ast0.ml
+Moving Ast0.mli to ast0.mli
+Moving AstUtils.ml to astUtils.ml
+Moving AstUtils.mli to astUtils.mli
+Moving BasicAst.ml to basicAst.ml
+Moving BasicAst.mli to basicAst.mli
+Moving Basics.ml to basics.ml
+Moving Basics.mli to basics.mli
+Moving BinInt.ml to binInt.ml
+Moving BinInt.mli to binInt.mli
+Moving BinNat.ml to binNat.ml
+Moving BinNat.mli to binNat.mli
+Moving BinNums.ml to binNums.ml
+Moving BinNums.mli to binNums.mli
+Moving BinPos.ml to binPos.ml
+Moving BinPos.mli to binPos.mli
+Moving BinPosDef.ml to binPosDef.ml
+Moving BinPosDef.mli to binPosDef.mli
+Moving Bool.ml to bool.ml
+Moving Bool.mli to bool.mli
+Moving Byte.ml to byte.ml
+Moving Byte.mli to byte.mli
+Moving CRelationClasses.ml to cRelationClasses.ml
+Moving CRelationClasses.mli to cRelationClasses.mli
+Moving Common0.ml to common0.ml
+Moving Common0.mli to common0.mli
+Moving Compare_dec.ml to compare_dec.ml
+Moving Compare_dec.mli to compare_dec.mli
+Moving Datatypes.ml to datatypes.ml
+Moving Datatypes.mli to datatypes.mli
+Moving Decimal.ml to decimal.ml
+Moving Decimal.mli to decimal.mli
+Moving Environment.ml to environment.ml
+Moving Environment.mli to environment.mli
+Moving Equalities.ml to equalities.ml
+Moving Equalities.mli to equalities.mli
+Moving Extractable.ml to extractable.ml
+Moving Extractable.mli to extractable.mli
+Moving Hexadecimal.ml to hexadecimal.ml
+Moving Hexadecimal.mli to hexadecimal.mli
+Moving Induction.ml to induction.ml
+Moving Induction.mli to induction.mli
+Moving LiftSubst.ml to liftSubst.ml
+Moving LiftSubst.mli to liftSubst.mli
+Moving List0.ml to list0.ml
+Moving List0.mli to list0.mli
+Moving Logic0.ml to logic0.ml
+Moving Logic0.mli to logic0.mli
+Moving MCCompare.ml to mCCompare.ml
+Moving MCCompare.mli to mCCompare.mli
+Moving MCList.ml to mCList.ml
+Moving MCList.mli to mCList.mli
+Moving MCOption.ml to mCOption.ml
+Moving MCOption.mli to mCOption.mli
+Moving MCPrelude.ml to mCPrelude.ml
+Moving MCPrelude.mli to mCPrelude.mli
+Moving MCProd.ml to mCProd.ml
+Moving MCProd.mli to mCProd.mli
+Moving MCRelations.ml to mCRelations.ml
+Moving MCRelations.mli to mCRelations.mli
+Moving MCString.ml to mCString.ml
+Moving MCString.mli to mCString.mli
+Moving MSetDecide.ml to mSetDecide.ml
+Moving MSetDecide.mli to mSetDecide.mli
+Moving MSetFacts.ml to mSetFacts.ml
+Moving MSetFacts.mli to mSetFacts.mli
+Moving MSetInterface.ml to mSetInterface.ml
+Moving MSetInterface.mli to mSetInterface.mli
+Moving MSetList.ml to mSetList.ml
+Moving MSetList.mli to mSetList.mli
+Moving MSetProperties.ml to mSetProperties.ml
+Moving MSetProperties.mli to mSetProperties.mli
+Moving Nat0.ml to nat0.ml
+Moving Nat0.mli to nat0.mli
+Moving Numeral.ml to numeral.ml
+Moving Numeral.mli to numeral.mli
+Moving OrderedType0.ml to orderedType0.ml
+Moving OrderedType0.mli to orderedType0.mli
+Moving Orders.ml to orders.ml
+Moving Orders.mli to orders.mli
+Moving OrdersFacts.ml to ordersFacts.ml
+Moving OrdersFacts.mli to ordersFacts.mli
+Moving OrdersLists.ml to ordersLists.ml
+Moving OrdersLists.mli to ordersLists.mli
+Moving OrdersTac.ml to ordersTac.ml
+Moving OrdersTac.mli to ordersTac.mli
+Moving PeanoNat.ml to peanoNat.ml
+Moving PeanoNat.mli to peanoNat.mli
+Moving Pretty.ml to pretty.ml
+Moving Pretty.mli to pretty.mli
+Moving Specif.ml to specif.ml
+Moving Specif.mli to specif.mli
+Moving String0.ml to string0.ml
+Moving String0.mli to string0.mli
+Moving UnivSubst0.ml to univSubst0.ml
+Moving UnivSubst0.mli to univSubst0.mli
+Moving Universes0.ml to universes0.ml
+Moving Universes0.mli to universes0.mli
+patching file gen-src/cRelationClasses.mli
+make[4]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/template-coq'
+make -f Makefile.template optfiles
+make[4]: Entering directory '/builds/coq/coq/_build_ci/metacoq/template-coq'
+COQDEP VFILES
+COQPP src/g_template_coq.mlg
+CAMLDEP src/plugin_core.mli
+CAMLDEP src/run_template_monad.mli
+CAMLDEP src/template_monad.mli
+OCAMLLIBDEP src/template_coq.mlpack
+CAMLDEP src/plugin_core.ml
+CAMLDEP src/run_template_monad.ml
+CAMLDEP src/template_monad.ml
+CAMLDEP src/constr_denoter.ml
+CAMLDEP src/constr_quoter.ml
+CAMLDEP src/constr_reification.ml
+CAMLDEP src/denoter.ml
+CAMLDEP src/quoter.ml
+CAMLDEP src/reification.ml
+CAMLDEP src/tm_util.ml
+CAMLDEP src/g_template_coq.ml
+CAMLOPT -c -for-pack Template_coq src/tm_util.ml
+CAMLOPT -c -for-pack Template_coq src/reification.ml
+src/reification.cmx (real: 0.04, user: 0.01, sys: 0.01, mem: 14796 ko)
+CAMLOPT -c -for-pack Template_coq src/constr_reification.ml
+src/tm_util.cmx (real: 0.07, user: 0.03, sys: 0.02, mem: 21812 ko)
+CAMLC -c src/template_monad.mli
+src/template_monad.cmi (real: 0.02, user: 0.00, sys: 0.01, mem: 15004 ko)
+CAMLC -c src/plugin_core.mli
+src/constr_reification.cmx (real: 0.07, user: 0.04, sys: 0.02, mem: 22020 ko)
+CAMLOPT -c -for-pack Template_coq src/quoter.ml
+src/plugin_core.cmi (real: 0.03, user: 0.01, sys: 0.01, mem: 17068 ko)
+CAMLOPT -c -for-pack Template_coq src/denoter.ml
+src/denoter.cmx (real: src/quoter.cmx (real: 0.22, user: 0.240.05, ,u sesry:s :0.16 , 0.02sy,s :m em: 0.0224280, mkeom:)
+34576 ko)
+CAMLOPT -c -for-pack Template_coq src/template_monad.ml
+CAMLOPT -c -for-pack Template_coq src/plugin_core.ml
+src/templaster_cm/opnaludg.inc_cmoxr e(.rcemaxl :( real: 0.10, user: 0.06, sys: 0.02, mem: 27236 ko)
+0.10, user: 0.08, sys: 0.01, mem: 26216 ko)
+CAMLC -c src/run_template_monad.mli
+CAMLOPT -c -for-pack Template_coq src/constr_quoter.ml
+src/run_template_monad.cmi (real: 0.01, user: 0.00, sys: 0.01, mem: 13148 ko)
+CAMLOPT -c -for-pack Template_coq src/constr_denoter.ml
+src/constr_denoter.cmx (real: 0.18, user: 0.14, sys: 0.01, mem: 31740 ko)
+src/constr_quoter.cmx (real: 0.24, user: 0.17, sys: 0.03, mem: 33044 ko)
+CAMLOPT -c -for-pack Template_coq src/run_template_monad.ml
+src/run_template_monad.cmx (real: 0.28, user: 0.15, sys: 0.03, mem: 38520 ko)
+CAMLOPT -c -for-pack Template_coq src/g_template_coq.ml
+src/g_template_coq.cmx (real: 0.25, user: 0.10, sys: 0.02, mem: 33140 ko)
+CAMLOPT -pack -o src/template_coq.cmx
+src/template_coq.cmx (real: 0.13, user: 0.02, sys: 0.02, mem: 19956 ko)
+CAMLOPT -a -o src/template_coq.cmxa
+src/template_coq.cmxa (real: 0.03, user: 0.00, sys: 0.01, mem: 13520 ko)
+CAMLOPT -shared -o src/template_coq.cmxs
+src/template_coq.cmxs (real: 0.08, user: 0.05, sys: 0.03, mem: 16040 ko)
+make[4]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/template-coq'
+cp src/template_coq.cm* build/
+make -f Makefile.template
+make[4]: Entering directory '/builds/coq/coq/_build_ci/metacoq/template-coq'
+COQC theories/Loader.v
+theories/Loader.vo (real: 1.04, user: 0.77, sys: 0.26, mem: 500040 ko)
+COQC theories/All.v
+theories/All.vo (real: 1.25, user: 0.95, sys: 0.28, mem: 521596 ko)
+make[4]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/template-coq'
+make -f Makefile.plugin
+make[4]: Entering directory '/builds/coq/coq/_build_ci/metacoq/template-coq'
+CAMLDEP gen-src/univSubst0.mli
+CAMLDEP gen-src/universes0.mli
+CAMLDEP gen-src/string0.mli
+CAMLDEP gen-src/specif.mli
+CAMLDEP gen-src/run_extractable.mli
+CAMLDEP gen-src/pretty.mli
+CAMLDEP gen-src/plugin_core.mli
+CAMLDEP gen-src/peanoNat.mli
+CAMLDEP gen-src/ordersTac.mli
+CAMLDEP gen-src/ordersLists.mli
+CAMLDEP gen-src/orders.mli
+CAMLDEP gen-src/ordersFacts.mli
+CAMLDEP gen-src/orderedType0.mli
+CAMLDEP gen-src/numeral.mli
+CAMLDEP gen-src/nat0.mli
+CAMLDEP gen-src/mSetProperties.mli
+CAMLDEP gen-src/mSetList.mli
+CAMLDEP gen-src/mSetInterface.mli
+CAMLDEP gen-src/mSetFacts.mli
+CAMLDEP gen-src/mSetDecide.mli
+CAMLDEP gen-src/mCString.mli
+CAMLDEP gen-src/mCRelations.mli
+CAMLDEP gen-src/mCProd.mli
+CAMLDEP gen-src/mCOption.mli
+CAMLDEP gen-src/mCList.mli
+CAMLDEP gen-src/mCCompare.mli
+CAMLDEP gen-src/mCPrelude.mli
+CAMLDEP gen-src/logic0.mli
+CAMLDEP gen-src/list0.mli
+CAMLDEP gen-src/liftSubst.mli
+CAMLDEP gen-src/hexadecimal.mli
+CAMLDEP gen-src/extractable.mli
+CAMLDEP gen-src/equalities.mli
+CAMLDEP gen-src/environment.mli
+CAMLDEP gen-src/decimal.mli
+CAMLDEP gen-src/datatypes.mli
+CAMLDEP gen-src/cRelationClasses.mli
+CAMLDEP gen-src/config0.mli
+CAMLDEP gen-src/compare_dec.mli
+CAMLDEP gen-src/common0.mli
+CAMLDEP gen-src/bool.mli
+CAMLDEP gen-src/binPos.mli
+CAMLDEP gen-src/binPosDef.mli
+CAMLDEP gen-src/binNums.mli
+CAMLDEP gen-src/binNat.mli
+CAMLDEP gen-src/binInt.mli
+CAMLDEP gen-src/basics.mli
+CAMLDEP gen-src/basicAst.mli
+CAMLDEP gen-src/astUtils.mli
+CAMLDEP gen-src/ast0.mli
+CAMLDEP gen-src/ascii.mli
+CAMLDEP gen-src/all_Forall.mli
+OCAMLLIBDEP gen-src/metacoq_template_plugin.mlpack
+CAMLDEP gen-src/univSubst0.ml
+CAMLDEP gen-src/universes0.ml
+CAMLDEP gen-src/tm_util.ml
+CAMLDEP gen-src/string0.ml
+CAMLDEP gen-src/specif.ml
+CAMLDEP gen-src/run_extractable.ml
+CAMLDEP gen-src/quoter.ml
+CAMLDEP gen-src/reification.ml
+CAMLDEP gen-src/pretty.ml
+CAMLDEP gen-src/plugin_core.ml
+CAMLDEP gen-src/peanoNat.ml
+CAMLDEP gen-src/ordersTac.ml
+CAMLDEP gen-src/orders.ml
+CAMLDEP gen-src/ordersLists.ml
+CAMLDEP gen-src/ordersFacts.ml
+CAMLDEP gen-src/orderedType0.ml
+CAMLDEP gen-src/numeral.ml
+CAMLDEP gen-src/nat0.ml
+CAMLDEP gen-src/mSetProperties.ml
+CAMLDEP gen-src/mSetList.ml
+CAMLDEP gen-src/mSetInterface.ml
+CAMLDEP gen-src/mSetFacts.ml
+CAMLDEP gen-src/mSetDecide.ml
+CAMLDEP gen-src/mCString.ml
+CAMLDEP gen-src/mCRelations.ml
+CAMLDEP gen-src/mCProd.ml
+CAMLDEP gen-src/mCOption.ml
+CAMLDEP gen-src/mCList.ml
+CAMLDEP gen-src/mCCompare.ml
+CAMLDEP gen-src/mCPrelude.ml
+CAMLDEP gen-src/logic0.ml
+CAMLDEP gen-src/list0.ml
+CAMLDEP gen-src/liftSubst.ml
+CAMLDEP gen-src/hexadecimal.ml
+CAMLDEP gen-src/extractable.ml
+CAMLDEP gen-src/equalities.ml
+CAMLDEP gen-src/environment.ml
+CAMLDEP gen-src/denoter.ml
+CAMLDEP gen-src/decimal.ml
+CAMLDEP gen-src/datatypes.ml
+CAMLDEP gen-src/cRelationClasses.ml
+CAMLDEP gen-src/config0.ml
+CAMLDEP gen-src/compare_dec.ml
+CAMLDEP gen-src/common0.ml
+CAMLDEP gen-src/bool.ml
+CAMLDEP gen-src/binPos.ml
+CAMLDEP gen-src/binPosDef.ml
+CAMLDEP gen-src/binNums.ml
+CAMLDEP gen-src/binNat.ml
+CAMLDEP gen-src/binInt.ml
+CAMLDEP gen-src/basics.ml
+CAMLDEP gen-src/basicAst.ml
+CAMLDEP gen-src/astUtils.ml
+CAMLDEP gen-src/ast_quoter.ml
+CAMLDEP gen-src/ast_denoter.ml
+CAMLDEP gen-src/ast0.ml
+CAMLDEP gen-src/ascii.ml
+CAMLDEP gen-src/all_Forall.ml
+CAMLC -c gen-src/datatypes.mli
+CAMLC -c gen-src/basics.mli
+gen-src/basics.cmi (real: 0.01, user: 0.00, sys: 0.00, mem: 11244 ko)
+CAMLC -c gen-src/binNums.mli
+gen-src/datatypes.cmi (real: 0.01, user: 0.00, sys: 0.00, mem: 12948 ko)
+CAMLC -c gen-src/mCPrelude.mli
+gen-src/binNums.cmi (real: 0.01, user: 0.00, sys: 0.00, mem: 11340 ko)
+CAMLC -c gen-src/mCRelations.mli
+gen-src/mCPrelude.cmi (real: 0.01, user: 0.00, sys: 0.00, mem: 11228 ko)
+CAMLC -c gen-src/mCProd.mli
+gen-src/mCRelations.cmi (real: 0.01, user: 0.00, sys: 0.00, mem: 11080 ko)
+CAMLC -c gen-src/config0.mli
+gen-src/mCProd.cmi (real: 0.01, user: 0.00, sys: 0.00, mem: 11620 ko)
+CAMLC -c gen-src/logic0.mli
+gen-src/config0.cmi (real: 0.01, user: 0.00, sys: 0.00, mem: 11112 ko)
+CAMLOPT -c -for-pack Metacoq_template_plugin gen-src/tm_util.ml
+gen-src/logic0.cmi (real: 0.01, user: 0.00, sys: 0.00, mem: 11524 ko)
+CAMLOPT -c -for-pack Metacoq_template_plugin gen-src/reification.ml
+gen-src/reification.cmx (real: 0.02, user: 0.01, sys: 0.00, mem: 14848 ko)
+CAMLC -c gen-src/plugin_core.mli
+gen-src/plugin_core.cmi (real: 0.02, user: 0.01, sys: 0.00, mem: 17156 ko)
+CAMLC -c gen-src/tm_util.ml
+gen-src/tm_util.cmo (real: 0.03, user: 0.02, sys: 0.01, mem: 18388 ko)
+CAMLC -c gen-src/reification.ml
+gen-src/reification.cmo (real: 0.01, user: 0.00, sys: 0.00, mem: 11740 ko)
+CAMLOPT -c -for-pack Metacoq_template_plugin gen-src/datatypes.ml
+gen-src/datatypes.cmx (real: 0.15, user: 0.01, sys: 0.01, mem: 16200 ko)
+gen-src/tm_util.cmx (real: 0.26, user: 0.03, sys: 0.02, mem: 22128 ko)
+CAMLC -c gen-src/bool.mli
+CAMLC -c gen-src/decimal.mli
+gen-src/decimal.cmi (real: 0.01, user: 0.00, sys: 0.00, mem: 12404 ko)
+gen-src/bool.cmi (real: 0.01, user: 0.00, sys: 0.00, mem: 11744 ko)
+CAMLC -c gen-src/specif.mli
+CAMLOPT -c -for-pack Metacoq_template_plugin gen-src/basics.ml
+gen-src/specif.cmi (real: 0.01, user: 0.00, sys: 0.00, mem: 13160 ko)
+CAMLOPT -c -for-pack Metacoq_template_plugin gen-src/binNums.ml
+ggeenn--ssrrcc//bbaisniNcusm.sc.mcxm x( r(eraela:l : 0.040.05,, uusseerr:: 0.010.00,, ssyyss:: 0.010.01,, mmeemm:: 1566414584 kkoo))
+
+CAMLC -c gen-src/cRelationClasses.mli
+CAMLC -c gen-src/compare_dec.mli
+gen-src/compare_dec.cmi (real: 0.01, user: 0.00, sys: 0.00, mem: 11720 ko)
+CAMLOPT -c -for-pack Metacoq_template_plugin gen-src/mCPrelude.ml
+gen-src/cRelationClasses.cmi (real: 0.01, user: 0.01, sys: 0.00, mem: 13388 ko)
+CAMLOPT -c -for-pack Metacoq_template_plugin gen-src/mCRelations.ml
+gen-src/mCPrelude.cmx (real: 0.04, user: 0.00, sys: 0.01, mem: 14368 ko)
+CAMLOPT -c -for-pack Metacoq_template_plugin gen-src/mCProd.ml
+gen-src/mCRelations.cmx (real: 0.09, user: 0.00, sys: 0.01, mem: 14184 ko)
+CAMLOPT -c -for-pack Metacoq_template_plugin gen-src/config0.ml
+gen-src/mCProd.cmx (real: 0.07, user: 0.01, sys: 0.01, mem: 15708 ko)
+CAMLOPT -c -for-pack Metacoq_template_plugin gen-src/logic0.ml
+gen-src/logic0.cmx (real: 0.02, user: 0.00, sys: 0.01, mem: 15516 ko)
+CAMLOPT -c -for-pack Metacoq_template_plugin gen-src/quoter.ml
+gen-src/config0.cmx (real: 0.09, user: 0.00, sys: 0.01, mem: 14648 ko)
+CAMLOPT -c -for-pack Metacoq_template_plugin gen-src/denoter.ml
+gen-src/denoter.cmx (real: 0.07, user: 0.05, sys: 0.01, mem: 24396 ko)
+CAMLOPT -c -for-pack Metacoq_template_plugin gen-src/plugin_core.ml
+gen-src/quoter.cmx (real: 0.17, user: 0.14, sys: 0.02, mem: 34476 ko)
+CAMLC -c gen-src/quoter.ml
+gen-src/plugin_core.cmx (real: 0.09, user: 0.06, sys: 0.02, mem: 27344 ko)
+CAMLOPT -c -for-pack Metacoq_template_plugin gen-src/bool.ml
+gen-src/bool.cmx (real: 0.02, user: 0.01, sys: 0.01, mem: 15772 ko)
+CAMLC -c gen-src/equalities.mli
+gen-src/equalities.cmi (real: 0.04, user: 0.00, sys: 0.00, mem: 13240 ko)
+CAMLOPT -c -for-pack Metacoq_template_plugin gen-src/decimal.ml
+gen-src/quoter.cmo (real: 0.16, user: 0.08, sys: 0.01, mem: 26408 ko)
+CAMLC -c gen-src/hexadecimal.mli
+gen-src/hexadecimal.cmi (real: 0.01, user: 0.00, sys: 0.00, mem: 13064 ko)
+CAMLOPT -c -for-pack Metacoq_template_plugin gen-src/specif.ml
+gen-src/decimal.cmx (real: 0.24, user: 0.03, sys: 0.01, mem: 17936 ko)
+gen-src/specif.cmx (real: 0.17, user: 0.02, sys: 0.01, mem: 16332 ko)
+CAMLC -c gen-src/orders.mli
+CAMLOPT -c -for-pack Metacoq_template_plugin gen-src/cRelationClasses.ml
+gen-src/orders.cmi (real: 0.02, user: 0.01, sys: 0.00, mem: 13748 ko)
+CAMLOPT -c -for-pack Metacoq_template_plugin gen-src/compare_dec.ml
+gen-src/cRelationClasses.cmx (real: 0.04, user: 0.02, sys: 0.01, mem: 16836 ko)
+CAMLOPT -c -for-pack Metacoq_template_plugin gen-src/equalities.ml
+gen-src/compare_dec.cmx (real: 0.03, user: 0.01, sys: 0.01, mem: 15536 ko)
+CAMLOPT -c -for-pack Metacoq_template_plugin gen-src/hexadecimal.ml
+gen-src/equalities.cmx (real: 0.03, user: 0.01, sys: 0.01, mem: 15840 ko)
+CAMLC -c gen-src/numeral.mli
+gen-src/numeral.cmi (real: 0.01, user: 0.00, sys: 0.00, mem: 11900 ko)
+CAMLOPT -c -for-pack Metacoq_template_plugin gen-src/orders.ml
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/orders.cmx (real: 0.04, user: 0.01, sys: 0.01, mem: 16768 ko)
+CAMLC -c gen-src/ordersTac.mli
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/ordersTac.cmi (real: 0.01, user: 0.00, sys: 0.00, mem: 12464 ko)
+CAMLC -c gen-src/ordersLists.mli
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/ordersLists.cmi (real: 0.01, user: 0.00, sys: 0.00, mem: 11760 ko)
+CAMLC -c gen-src/orderedType0.mli
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/orderedType0.cmi (real: 0.01, user: 0.00, sys: 0.01, mem: 12108 ko)
+gen-src/hexadecimal.cmx (real: 0.13, user: 0.09, sys: 0.02, mem: 20020 ko)
+CAMLC -c gen-src/nat0.mli
+CAMLC -c gen-src/peanoNat.mli
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/peanoNat.cmi (real: 0.01, user: 0.01, sys:g e0.00n,- smrecm/:n at133640 .kco)m
+i (real: 0.02, user: 0.01, sys: 0.00, mem: 13460 ko)
+CAMLOPT -c -for-pack Metacoq_template_plugin gen-src/ordersTac.ml
+CAMLC -c gen-src/ordersFacts.mli
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/ordersFacts.cmi (real: 0.01, user: 0.00, sys: 0.01, mem: 13444 ko)
+CAMLOPT -c -for-pack Metacoq_template_plugin gen-src/ordersLists.ml
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/ordersLists.cmx (real: 0.20, user: 0.00, sys: 0.01, mem: 15096 ko)
+CAMLC -c gen-src/mSetInterface.mli
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/mSetInterface.cmi (real: 0.02, user: 0.02, sys: 0.00, mem: 15244 ko)
+CAMLC -c gen-src/mCCompare.mli
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/mCCompare.cmi (real: 0.01, user: 0.00, sys: 0.00, mem: 11644 ko)
+CAMLOPT -c -for-pack Metacoq_template_plugin gen-src/numeral.ml
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/ordersTac.cmx (real: 0.27, user: 0.01, sys: 0.01, mem: 15844 ko)
+CAMLC -c gen-src/list0.mli
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/list0.cmi (real: 0.02, user: 0.01, sys: 0.00, mem: 13404 ko)
+CAMLC -c gen-src/binPosDef.mli
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/numeral.cmx (real: 0.04, user: 0.00, sys: 0.01, mem: 15820 ko)
+CAMLOPT -c -for-pack Metacoq_template_plugin gen-src/ordersFacts.ml
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/binPosDef.cmi (real: 0.01, user: 0.00, sys: 0.01, mem: 13536 ko)
+CAMLOPT -c -for-pack Metacoq_template_plugin gen-src/orderedType0.ml
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/ordersFacts.cmx (real: 0.02, user: 0.01, sys: 0.01, mem: 16032 ko)
+CAMLC -c gen-src/mSetFacts.mli
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/mSetFacts.cmi (real: 0.02, user: 0.01, sys: 0.00, mem: 13748 ko)
+CAMLC -c gen-src/mSetList.mli
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/mSetList.cmi (real: 0.02, user: 0.01, sys: 0.00, mem: 15760 ko)
+CAMLC -c gen-src/mCList.mli
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/orderedType0.cmx (real: 0.07, user: 0.01, sys: 0.01, mem: 15860 ko)
+CAMLOPT -c -for-pack Metacoq_template_plugin gen-src/nat0.ml
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/mCList.cmi (real: 0.01, user: 0.00, sys: 0.01, mem: 13612 ko)
+CAMLOPT -c -for-pack Metacoq_template_plugin gen-src/peanoNat.ml
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/nat0.cmx (real: 0.21, user: 0.04, sys: 0.01, mem: 18464 ko)
+CAMLC -c gen-src/binPos.mli
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/binPos.cmi (real: 0.01, user: 0.01, sys: 0.00, mem: 14264 ko)
+CAMLOPT -c -for-pack Metacoq_template_plugin gen-src/mSetInterface.ml
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/peanoNat.cmx (real: 0.26, user: 0.07, sys: 0.02, mem: 19912 ko)
+CAMLC -c gen-src/mSetDecide.mli
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/mSetDecide.cmi (real: 0.01, user: 0.00, sys: 0.00, mem: 13776 ko)
+CAMLC -c gen-src/mCOption.mli
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/mCOption.cmi (real: 0.01, user: 0.00, sys: 0.00, mem: 12200 ko)
+CAMLOPT -c -for-pack Metacoq_template_plugin gen-src/mCCompare.ml
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/mSetInterface.cmx (real: 0.11, user: 0.05, sys: 0.02, mem: 20324 ko)
+CAMLC -c gen-src/all_Forall.mli
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/all_Forall.cmi (real: 0.02, user: 0.01, sys: 0.00, mem: 14992 ko)
+CAMLOPT -c -for-pack Metacoq_template_plugin gen-src/list0.ml
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/mCCompare.cmx (real: 0.08, user: 0.01, sys: 0.01, mem: 15672 ko)
+CAMLOPT -c -for-pack Metacoq_template_plugin gen-src/binPosDef.ml
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/list0.cmx (real: 0.04, user: 0.03, sys: 0.01, mem: 17796 ko)
+CAMLC -c gen-src/binNat.mli
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/binNat.cmi (real: 0.01, user: 0.00, sys: 0.00, mem: 13444 ko)
+CAMLOPT -c -for-pack Metacoq_template_plugin gen-src/mSetFacts.ml
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/mSetFacts.cmx (real: 0.12, user: 0.01, sys: 0.01, mem: 17012 ko)
+gen-src/binPosDef.cmx (real: 0.18, user: 0.13, sys: 0.03, mem: 23892 ko)
+CAMLOPT -c -for-pack Metacoq_template_plugin gen-src/mSetList.ml
+CAMLC -c gen-src/mSetProperties.mli
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/mSetProperties.cmi (real: 0.07, user: 0.02, sys: 0.00, mem: 15212 ko)
+CAMLOPT -c -for-pack Metacoq_template_plugin gen-src/mCList.ml
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/mSetList.cmx (real: 0.28, user: 0.08, sys: 0.02, mem: 21352 ko)
+CAMLOPT -c -for-pack Metacoq_template_plugin gen-src/binPos.ml
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/mCList.cmx (real: 0.25, user: 0.01, sys: 0.01, mem: 16712 ko)
+CAMLC -c gen-src/binInt.mli
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/binInt.cmi (real: 0.02, user: 0.01, sys: 0.01, mem: 13564 ko)
+CAMLC -c gen-src/ascii.mli
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/ascii.cmi (real: 0.01, user: 0.00, sys: 0.01, mem: 12228 ko)
+CAMLOPT -c -for-pack Metacoq_template_plugin gen-src/mSetDecide.ml
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/binPos.cmx (real: 0.19, user: 0.15, sys: 0.03, mem: 25208 ko)
+CAMLOPT -c -for-pack Metacoq_template_plugin gen-src/mCOption.ml
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/mSetDecide.cmx (real: 0.18g, euns-esrr:c /mC0.01O,p tsiyosn:. cm0.01x, (mreema:l : 17180 ko)
+0.08, user: 0.01, sys: 0.01, mem: 16020 ko)
+CAMLOPT -c -for-pack Metacoq_template_plugin gen-src/binNat.ml
+CAMLC -c gen-src/string0.mli
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/string0.cmi (real: 0.01, user: 0.00, sys: 0.01, mem: 12236 ko)
+CAMLOPT -c -for-pack Metacoq_template_plugin gen-src/mSetProperties.ml
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/mSetProperties.cmx (real: 0.10, user: 0.04, sys: 0.01, mem: 19600 ko)
+CAMLC -c gen-src/mCString.mli
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/binNat.cmx (real: 0.13, user: 0.10, sys: 0.02, mem: 20796 ko)
+CAMLOPT -c -for-pack Metacoq_template_plugin gen-src/all_Forall.ml
+gen-src/mCString.cmi (real: 0.01, user: 0.00, sys: 0.00, mem: 11712 ko)
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+CAMLOPT -c -for-pack Metacoq_template_plugin gen-src/binInt.ml
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/binInt.cmx (real: 0.32, user: 0.12, sys: 0.02, mem: 22784 ko)
+gen-src/all_Forall.cmx (real: 0.33, user: 0.14, sys: 0.02, mem: 25372 ko)
+CAMLOPT -c -for-pack Metacoq_template_plugin gen-src/ascii.ml
+CAMLC -c gen-src/basicAst.mli
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/basicAst.cmi (real: 0.02, user: 0.01, sys: 0.00, mem: 14404 ko)
+CAMLC -c gen-src/universes0.mli
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/ascii.cmx (real: 0.06, user: 0.02, sys: 0.01, mem: 16900 ko)
+CAMLOPT -c -for-pack Metacoq_template_plugin gen-src/string0.ml
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/universes0.cmi (real: 0.06, user: 0.04, sys: 0.01, mem: 18504 ko)
+CAMLC -c gen-src/environment.mli
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/string0.cmx (real: 0.04, user: 0.02, sys: 0.01, mem: 16504 ko)
+CAMLC -c gen-src/ast0.mli
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/environment.cmi (real: 0.02, user: 0.01, sys: 0.01, mem: 14988 ko)
+CAMLOPT -c -for-pack Metacoq_template_plugin gen-src/mCString.ml
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/ast0.cmi (real: 0.03, user: 0.01, sys: 0.01, mem: 15204 ko)
+CAMLC -c gen-src/astUtils.mli
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/astUtils.cmi (real: 0.01, user: 0.00, sys: 0.00, mem: 14040 ko)
+CAMLC -c gen-src/liftSubst.mli
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/liftSubst.cmi (real: 0.01, user: 0.00, sys: 0.00, mem: 13680 ko)
+CAMLC -c gen-src/univSubst0.mli
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/univSubst0.cmi (real: 0.01, user: 0.00, sys: 0.00, mem: 14128 ko)
+CAMLC -c gen-src/pretty.mli
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/pretty.cmi (real: 0.01, user: 0.00, sys: 0.01, mem: 15060 ko)
+CAMLC -c gen-src/common0.mli
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/common0.cmi (real: 0.01, user: 0.00, sys: 0.00, mem: 13492 ko)
+CAMLC -c gen-src/ast_quoter.ml
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/ast_quoter.cmo (real: 0.06, user: 0.04, sys: 0.01, mem: 22660 ko)
+CAMLC -c gen-src/extractable.mli
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/mCString.cmx (real: 0.24, user: 0.02, sys: 0.01, mem: 16472 ko)
+CAMLOPT -c -for-pack Metacoq_template_plugin gen-src/basicAst.ml
+gen-src/extractable.cmi (real: 0.07, user: 0.00, sys: 0.00, mem: 13580 ko)
+CAMLC -c gen-src/run_extractable.mli
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/run_extractable.cmi (real: 0.01, user: 0.00, sys: 0.00, mem: 13668 ko)
+gen-src/basicAst.cmx (real: 0.05, user: 0.03, sys: 0.01, mem: 18744 ko)
+CAMLOPT -c -for-pack Metacoq_template_plugin gen-src/universes0.ml
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/universes0.cmx (real: 0.59, user: 0.41, sys: 0.03, mem: 39160 ko)
+CAMLOPT -c -for-pack Metacoq_template_plugin gen-src/environment.ml
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/environment.cmx (real: 0.16, user: 0.03, sys: 0.01, mem: 19716 ko)
+CAMLOPT -c -for-pack Metacoq_template_plugin gen-src/ast0.ml
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/ast0.cmx (real: 0.25, user: 0.09, sys: 0.02, mem: 24572 ko)
+CAMLOPT -c -for-pack Metacoq_template_plugin gen-src/astUtils.ml
+CAMLOPT -c -for-pack Metacoq_template_plugin gen-src/liftSubst.ml
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/astUtils.cmx (real: 0.05, user: 0.04, sys: 0.01, mem: 19608 ko)
+CAMLOPT -c -for-pack Metacoq_template_plugin gen-src/univSubst0.ml
+gen-src/liftSubst.cmx (real: 0.06, user: 0.04, sys: 0.01, mem: 19008 ko)
+CAMLOPT -c -for-pack Metacoq_template_plugin gen-src/common0.ml
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/common0.cmx (real: 0.05, user: 0.02, sys: 0.01, mem: 16420 ko)
+gen-src/univSubst0.cmx (real: 0.05, user: 0.03, sys: 0.01, mem: 18548 ko)
+CAMLOPT -c -for-pack Metacoq_template_plugin gen-src/ast_quoter.ml
+CAMLOPT -c -for-pack Metacoq_template_plugin gen-src/pretty.ml
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/pretty.cmx (real: 0.11, user: 0.08, sys: 0.01, mem: 22020 ko)
+CAMLOPT -c -for-pack Metacoq_template_plugin gen-src/extractable.ml
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/extractable.cmx (real: 0.08, user: 0.04, sys: 0.01, mem: 18780 ko)
+gen-src/ast_quoter.cmx (real: 0.20, user: 0.10, sys: 0.02, mem: 27252 ko)
+CAMLOPT -c -for-pack Metacoq_template_plugin gen-src/ast_denoter.ml
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/ast_denoter.cmx (real: 0.12, user: 0.07, sys: 0.02, mem: 27180 ko)
+CAMLOPT -c -for-pack Metacoq_template_plugin gen-src/run_extractable.ml
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/run_extractable.cmx (real: 0.13, user: 0.10, sys: 0.02, mem: 30484 ko)
+CAMLOPT -pack -o gen-src/metacoq_template_plugin.cmx
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/metacoq_template_plugin.cmx (real: 0.15, user: 0.09, sys: 0.04, mem: 31648 ko)
+CAMLOPT -a -o gen-src/metacoq_template_plugin.cmxa
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/metacoq_template_plugin.cmxa (real: 0.03, user: 0.01, sys: 0.02, mem: 13896 ko)
+CAMLOPT -shared -o gen-src/metacoq_template_plugin.cmxs
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/metacoq_template_plugin.cmxs (real: 0.13, user: 0.09, sys: 0.03, mem: 18540 ko)
+COQC theories/ExtractableLoader.v
+theories/ExtractableLoader.vo (real: 0.09, user: 0.05, sys: 0.03, mem: 62540 ko)
+cp gen-src/metacoq_template_plugin.cm* build/
+make[4]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/template-coq'
+make[3]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/template-coq'
+make -C checker
+make -C pcuic
+make[3]: Entering directory '/builds/coq/coq/_build_ci/metacoq/checker'
+cat metacoq-config > _CoqProject
+make[3]: Entering directory '/builds/coq/coq/_build_ci/metacoq/pcuic'
+cat metacoq-config > _CoqProject
+cat _CoqProject.in >> _CoqProject
+cat _CoqProject.in >> _CoqProject
+coq_makefile -f _CoqProject -o Makefile.pcuic
+coq_makefile -f _CoqProject -o Makefile.coq
+Warning: ../template-coq/theories (used in -R or -Q) is not a subdirectory of the current directory
+
+make -f Makefile.coq
+Warning: ../template-coq/theories (used in -R or -Q) is not a subdirectory of the current directory
+
+make -f Makefile.pcuic
+make[4]: Entering directory '/builds/coq/coq/_build_ci/metacoq/checker'
+make[4]: Entering directory '/builds/coq/coq/_build_ci/metacoq/pcuic'
+COQDEP VFILES
+COQDEP VFILES
+COQC theories/Reflect.v
+COQC theories/PCUICAst.v
+theories/PCUICAst.vo (real: 0.99, user: 0.75, sys: 0.23, mem: 477372 ko)
+COQC theories/PCUICSize.v
+theories/PCUICSize.vo (real: 1.73, user: 1.44, sys: 0.28, mem: 503484 ko)
+COQC theories/PCUICInduction.v
+theories/PCUICInduction.vo (real: 1.19, user: 0.89, sys: 0.29, mem: 481312 ko)
+COQC theories/PCUICCheckerCompleteness.v
+theories/PCUICCheckerCompleteness.vo (real: 0.85, user: 0.60, sys: 0.24, mem: 433064 ko)
+COQC theories/TemplateToPCUIC.v
+theories/Reflect.vo (real: 5.26, user: 4.53, sys: 0.70, mem: 552364 ko)
+COQC theories/WeakeningEnv.v
+theories/TemplateToPCUIC.vo (real: 0.98, user: 0.69, sys: 0.27, mem: 482472 ko)
+COQC theories/PCUICAstUtils.v
+theories/WeakeningEnv.vo (real: 3.33, user: 2.80, sys: 0.50, mem: 512292 ko)
+COQC theories/Checker.v
+theories/PCUICAstUtils.vo (real: 3.13, user: 2.78, sys: 0.32, mem: 543424 ko)
+COQC theories/PCUICReflect.v
+theories/Checker.vo (real: 4.71, user: 4.00, sys: 0.69, mem: 555748 ko)
+COQC theories/WcbvEval.v
+theories/PCUICReflect.vo (real: 4.46, user: 4.11, sys: 0.32, mem: 543956 ko)
+COQC theories/PCUICLiftSubst.v
+theories/WcbvEval.vo (real: 5.56, user: 4.94, sys: 0.59, mem: 533768 ko)
+COQC theories/Retyping.v
+theories/Retyping.vo (real: 1.16, user: 0.90, sys: 0.26, mem: 524140 ko)
+COQC theories/Normal.v
+theories/Normal.vo (real: 1.10, user: 0.84, sys: 0.25, mem: 497360 ko)
+COQC theories/Generation.v
+theories/Generation.vo (real: 1.95, user: 1.69, sys: 0.25, mem: 514692 ko)
+COQC theories/Closed.v
+File "./theories/Closed.v", line 299, characters 2-42:
+Warning:
+Automatically inlined signature for type All_local_env. Use [Derive Signature for All_local_env.] to avoid this.
+theories/PCUICLiftSubst.vo (real: 27.51, user: 26.28, sys: 0.94, mem: 597996 ko)
+COQC theories/PCUICToTemplate.v
+theories/PCUICToTemplate.vo (real: 1.33, user: 1.04, sys: 0.28, mem: 527408 ko)
+COQC theories/PCUICUtils.v
+theories/PCUICUtils.vo (real: 1.81, user: 1.47, sys: 0.33, mem: 527440 ko)
+COQC theories/PCUICUnivSubst.v
+theories/Closed.vo (real: 22.03, user: 21.55, sys: 0.36, mem: 603616 ko)
+COQC theories/Weakening.v
+theories/PCUICUnivSubst.vo (real: 3.67, user: 3.33, sys: 0.32, mem: 533884 ko)
+COQC theories/PCUICEquality.v
+theories/Weakening.vo (real: 16.17, user: 15.64, sys: 0.43, mem: 579100 ko)
+COQC theories/Substitution.v
+theories/PCUICEquality.vo (real: 40.79, user: 39.04, sys: 1.52, mem: 790088 ko)
+COQC theories/PCUICPosition.v
+theories/Substitution.vo (real: 29.09, user: 27.93, sys: 0.98, mem: 621392 ko)
+COQC theories/All.v
+theories/All.vo (real: 1.65, user: 1.29, sys: 0.34, mem: 545736 ko)
+./update_plugin.sh
+Renaming extracted files
+make[4]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/checker'
+make[3]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/checker'
+make -C examples
+make[3]: Entering directory '/builds/coq/coq/_build_ci/metacoq/examples'
+coq_makefile -f _CoqProject -o Makefile.coq
+Warning: ../template-coq/theories (used in -R or -Q) is not a subdirectory of the current directory
+
+make -f Makefile.coq pretty-timed
+make[4]: Entering directory '/builds/coq/coq/_build_ci/metacoq/examples'
+COQDEP VFILES
+COQC demo.v
+demo.vo (real: 1.94, user: 1.56, sys: 0.36, mem: 527740 ko)
+COQC add_constructor.v
+add_constructor.vo (real: 1.44, user: 1.13, sys: 0.30, mem: 524144 ko)
+COQC tauto.v
+tauto.vo (real: 20.77, user: 19.93, sys: 0.72, mem: 581920 ko)
+ Time | Peak Mem | File Name
+--------------------------------------------
+0m22.62s | 581920 ko | Total Time / Peak Mem
+--------------------------------------------
+0m19.93s | 581920 ko | tauto.vo
+0m01.56s | 527740 ko | demo.vo
+0m01.13s | 524144 ko | add_constructor.vo
+make[4]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/examples'
+make[3]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/examples'
+theories/PCUICPosition.vo (real: 29.43, user: 28.24, sys: 1.03, mem: 723216 ko)
+COQC theories/PCUICTyping.v
+Axioms:
+ind_guard : mutual_inductive_body -> bool
+fix_guard : mfixpoint term -> bool
+cofix_guard : mfixpoint term -> bool
+theories/PCUICTyping.vo (real: 44.26, user: 42.82, sys: 1.17, mem: 727688 ko)
+COQC theories/PCUICReduction.v
+COQC theories/PCUICWeakeningEnv.v
+theories/PCUICWeakeningEnv.vo (real: 5.17, user: 4.38, sys: 0.74, mem: 571076 ko)
+COQC theories/PCUICGeneration.v
+theories/PCUICReduction.vo (real: 6.98, user: 6.16, sys: 0.78, mem: 583116 ko)
+COQC theories/PCUICNormal.v
+theories/PCUICNormal.vo (real: 1.72, user: 1.37, sys: 0.33, mem: 551200 ko)
+COQC theories/PCUICNameless.v
+theories/PCUICGeneration.vo (real: 3.72, user: 3.34, sys: 0.36, mem: 586388 ko)
+COQC theories/PCUICMetaTheory.v
+theories/PCUICMetaTheory.vo (real: 1.26, user: 0.96, sys: 0.29, mem: 546928 ko)
+COQC theories/PCUICChecker.v
+theories/PCUICChecker.vo (real: 1.41, user: 1.11, sys: 0.29, mem: 549776 ko)
+COQC theories/PCUICToTemplateCorrectness.v
+theories/PCUICToTemplateCorrectness.vo (real: 8.69, user: 7.84, sys: 0.79, mem: 608576 ko)
+COQC theories/PCUICCumulativity.v
+theories/PCUICCumulativity.vo (real: 2.17, user: 1.85, sys: 0.30, mem: 561876 ko)
+COQC theories/PCUICClosed.v
+theories/PCUICNameless.vo (real: 15.98, user: 14.98, sys: 0.89, mem: 623196 ko)
+COQC theories/PCUICPretty.v
+theories/PCUICPretty.vo (real: 1.64, user: 1.30, sys: 0.33, mem: 551364 ko)
+theories/PCUICClosed.vo (real: 24.65, user: 23.99, sys: 0.51, mem: 654592 ko)
+COQC theories/PCUICWeakening.v
+COQC theories/PCUICCSubst.v
+theories/PCUICCSubst.vo (real: 1.93, user: 1.55, sys: 0.36, mem: 562424 ko)
+COQC theories/PCUICWcbvEval.v
+theories/PCUICWcbvEval.vo (real: 12.05, user: 11.54, sys: 0.43, mem: 589944 ko)
+theories/PCUICWeakening.vo (real: 24.20, user: 23.42, sys: 0.64, mem: 685852 ko)
+COQC theories/PCUICSigmaCalculus.v
+COQC theories/PCUICUnivSubstitution.v
+theories/PCUICUnivSubstitution.vo (real: 10.93, user: 10.41, sys: 0.45, mem: 621644 ko)
+theories/PCUICSigmaCalculus.vo (real: 39.32, user: 38.12, sys: 0.96, mem: 657100 ko)
+COQC theories/PCUICSubstitution.v
+theories/PCUICSubstitution.vo (real: 26.54, user: 25.65, sys: 0.68, mem: 673140 ko)
+COQC theories/PCUICParallelReduction.v
+COQC theories/TemplateToPCUICCorrectness.v
+theories/TemplateToPCUICCorrectness.vo (real: 13.77, user: 13.16, sys: 0.52, mem: 641024 ko)
+theories/PCUICParallelReduction.vo (real: 29.43, user: 28.26, sys: 0.87, mem: 779308 ko)
+COQC theories/PCUICParallelReductionConfluence.v
+Axioms:
+ind_guard : mutual_inductive_body → bool
+FunctionalExtensionality.functional_extensionality_dep
+ : ∀ (A : Type) (B : A → Type) (f g : ∀ x : A, B x),
+ (∀ x : A, f x = g x) → f = g
+fix_guard : mfixpoint term → bool
+cofix_guard : mfixpoint term → bool
+theories/PCUICParallelReductionConfluence.vo (real: 96.83, user: 94.58, sys: 1.69, mem: 849824 ko)
+COQC theories/PCUICConfluence.v
+theories/PCUICConfluence.vo (real: 35.96, user: 34.44, sys: 1.27, mem: 742788 ko)
+COQC theories/PCUICContextConversion.v
+theories/PCUICContextConversion.vo (real: 9.28, user: 8.74, sys: 0.48, mem: 629108 ko)
+COQC theories/PCUICConversion.v
+File "./theories/PCUICConversion.v", line 2097, characters 4-13:
+Warning:
+Automatically inlined signature for type clos_refl_trans_1n. Use [Derive Signature for clos_refl_trans_1n.] to avoid this.
+File "./theories/PCUICConversion.v", line 2234, characters 4-37:
+Warning: Cannot remove s'. [cannot-remove-as-expected,tactics]
+theories/PCUICConversion.vo (real: 30.61, user: 29.65, sys: 0.79, mem: 750296 ko)
+COQC theories/PCUICInversion.v
+COQC theories/PCUICRetyping.v
+theories/PCUICRetyping.vo (real: 1.94, user: 1.58, sys: 0.34, mem: 589768 ko)
+theories/PCUICInversion.vo (real: 10.19, user: 9.35, sys: 0.77, mem: 622488 ko)
+COQC theories/PCUICCtxShape.v
+theories/PCUICCtxShape.vo (real: 2.23, user: 1.75, sys: 0.38, mem: 598288 ko)
+COQC theories/PCUICContexts.v
+theories/PCUICContexts.vo (real: 6.83, user: 6.33, sys: 0.45, mem: 615568 ko)
+COQC theories/PCUICArities.v
+theories/PCUICArities.vo (real: 8.61, user: 7.75, sys: 0.80, mem: 625664 ko)
+COQC theories/PCUICSpine.v
+theories/PCUICSpine.vo (real: 23.61, user: 22.85, sys: 0.63, mem: 706592 ko)
+COQC theories/PCUICInductives.v
+theories/PCUICInductives.vo (real: 19.89, user: 19.08, sys: 0.66, mem: 683776 ko)
+COQC theories/PCUICValidity.v
+theories/PCUICValidity.vo (real: 4.40, user: 3.99, sys: 0.36, mem: 624912 ko)
+COQC theories/PCUICAlpha.v
+COQC theories/PCUICInductiveInversion.v
+theories/PCUICAlpha.vo (real: 10.12, user: 9.58, sys: 0.47, mem: 684644 ko)
+theories/PCUICInductiveInversion.vo (real: 10.95, user: 10.39, sys: 0.48, mem: 661964 ko)
+COQC theories/PCUICSR.v
+Axioms:
+todounivs : forall A : Type, A
+todoeta : forall A : Type, A
+ind_guard : mutual_inductive_body -> bool
+FunctionalExtensionality.functional_extensionality_dep
+ : forall (A : Type) (B : A -> Type) (f g : forall x : A, B x),
+ (forall x : A, f x = g x) -> f = g
+fix_guard_subst_instance
+ : forall (mfix : mfixpoint term) (u : Instance.t),
+ fix_guard mfix ->
+ fix_guard
+ (map (map_def (subst_instance_constr u) (subst_instance_constr u)) mfix)
+fix_guard_subst
+ : forall (mfix : list (def term)) (s : list term) (k : nat),
+ let k' := #|mfix| + k in
+ let mfix' := map (map_def (subst s k) (subst s k')) mfix in
+ fix_guard mfix -> fix_guard mfix'
+fix_guard_red1
+ : forall (Σ : global_env) (Γ : context) (mfix mfix' : mfixpoint term)
+ (idx : nat),
+ fix_guard mfix ->
+ red1 Σ Γ (tFix mfix idx) (tFix mfix' idx) -> fix_guard mfix'
+fix_guard_lift
+ : forall (mfix : list (def term)) (n k : nat),
+ let k' := #|mfix| + k in
+ let mfix' := map (map_def (lift n k) (lift n k')) mfix in
+ fix_guard mfix -> fix_guard mfix'
+fix_guard : mfixpoint term -> bool
+cofix_guard_subst_instance
+ : forall (mfix : mfixpoint term) (u : Instance.t),
+ cofix_guard mfix ->
+ cofix_guard
+ (map (map_def (subst_instance_constr u) (subst_instance_constr u)) mfix)
+cofix_guard_subst
+ : forall (mfix : list (def term)) (s : list term) (k : nat),
+ let k' := #|mfix| + k in
+ let mfix' := map (map_def (subst s k) (subst s k')) mfix in
+ cofix_guard mfix -> cofix_guard mfix'
+cofix_guard_red1
+ : forall (Σ : global_env) (Γ : context) (mfix mfix' : mfixpoint term)
+ (idx : nat),
+ cofix_guard mfix ->
+ red1 Σ Γ (tCoFix mfix idx) (tCoFix mfix' idx) -> cofix_guard mfix'
+cofix_guard_lift
+ : forall (mfix : list (def term)) (n k : nat),
+ let k' := #|mfix| + k in
+ let mfix' := map (map_def (lift n k) (lift n k')) mfix in
+ cofix_guard mfix -> cofix_guard mfix'
+cofix_guard : mfixpoint term -> bool
+theories/PCUICSR.vo (real: 82.63, user: 80.36, sys: 1.84, mem: 975764 ko)
+COQC theories/PCUICPrincipality.v
+Axioms:
+todounivs : forall A : Type@{todounivs.u0}, A
+todoeta : forall A : Type@{todoeta.u0}, A
+ind_guard : mutual_inductive_body -> bool
+FunctionalExtensionality.functional_extensionality_dep
+ : forall
+ (A : Type@{FunctionalExtensionality.functional_extensionality_dep.u0})
+ (B : A ->
+ Type@{FunctionalExtensionality.functional_extensionality_dep.u1})
+ (f g : forall x : A, B x), (forall x : A, f x = g x) -> f = g
+PCUICUnivSubstitution.fix_guard_subst_instance
+ : forall (mfix : mfixpoint term) (u : Instance.t),
+ fix_guard mfix ->
+ fix_guard
+ (map (map_def (subst_instance_constr u) (subst_instance_constr u)) mfix)
+fix_guard_subst
+ : forall (mfix : list (def term)) (s : list term) (k : nat),
+ let k' := #|mfix| + k in
+ let mfix' := map (map_def (subst s k) (subst s k')) mfix in
+ fix_guard mfix -> fix_guard mfix'
+fix_guard_red1
+ : forall (Σ : global_env) (Γ : context) (mfix mfix' : mfixpoint term)
+ (idx : nat),
+ fix_guard mfix ->
+ red1 Σ Γ (tFix mfix idx) (tFix mfix' idx) -> fix_guard mfix'
+fix_guard_lift
+ : forall (mfix : list (def term)) (n k : nat),
+ let k' := #|mfix| + k in
+ let mfix' := map (map_def (lift n k) (lift n k')) mfix in
+ fix_guard mfix -> fix_guard mfix'
+fix_guard_eq_term
+ : forall (mfix mfix' : mfixpoint term) (idx : nat),
+ fix_guard mfix -> tFix mfix idx ≡ tFix mfix' idx -> fix_guard mfix'
+fix_guard : mfixpoint term -> bool
+PCUICUnivSubstitution.cofix_guard_subst_instance
+ : forall (mfix : mfixpoint term) (u : Instance.t),
+ cofix_guard mfix ->
+ cofix_guard
+ (map (map_def (subst_instance_constr u) (subst_instance_constr u)) mfix)
+cofix_guard_subst
+ : forall (mfix : list (def term)) (s : list term) (k : nat),
+ let k' := #|mfix| + k in
+ let mfix' := map (map_def (subst s k) (subst s k')) mfix in
+ cofix_guard mfix -> cofix_guard mfix'
+cofix_guard_red1
+ : forall (Σ : global_env) (Γ : context) (mfix mfix' : mfixpoint term)
+ (idx : nat),
+ cofix_guard mfix ->
+ red1 Σ Γ (tCoFix mfix idx) (tCoFix mfix' idx) -> cofix_guard mfix'
+cofix_guard_lift
+ : forall (mfix : list (def term)) (n k : nat),
+ let k' := #|mfix| + k in
+ let mfix' := map (map_def (lift n k) (lift n k')) mfix in
+ cofix_guard mfix -> cofix_guard mfix'
+cofix_guard_eq_term
+ : forall (mfix mfix' : mfixpoint term) (idx : nat),
+ cofix_guard mfix ->
+ tCoFix mfix idx ≡ tCoFix mfix' idx -> cofix_guard mfix'
+cofix_guard : mfixpoint term -> bool
+theories/PCUICPrincipality.vo (real: 27.66, user: 26.11, sys: 1.08, mem: 959132 ko)
+COQC theories/PCUICSafeLemmata.v
+theories/PCUICSafeLemmata.vo (real: 7.45, user: 6.54, sys: 0.85, mem: 667924 ko)
+COQC theories/PCUICSN.v
+COQC theories/PCUICElimination.v
+theories/PCUICSN.vo (real: 2.47, user: 2.12, sys: 0.33, mem: 630488 ko)
+theories/PCUICElimination.vo (real: 8.12, user: 7.64, sys: 0.44, mem: 646256 ko)
+# echo "All done, moving extraction files!"
+# ./clean_extraction.sh
+make[4]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/pcuic'
+make[3]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/pcuic'
+make -C safechecker
+make[3]: Entering directory '/builds/coq/coq/_build_ci/metacoq/safechecker'
+cat metacoq-config > _CoqProject
+cat _CoqProject.in >> _CoqProject
+coq_makefile -f _CoqProject -o Makefile.safechecker
+Warning: ../template-coq/theories (used in -R or -Q) is not a subdirectory of the current directory
+
+make -f Makefile.safechecker
+make[4]: Entering directory '/builds/coq/coq/_build_ci/metacoq/safechecker'
+COQDEP VFILES
+COQC theories/PCUICSafeReduce.v
+theories/PCUICSafeReduce.vo (real: 121.19, user: 119.92, sys: 0.74, mem: 1136588 ko)
+COQC theories/PCUICSafeConversion.v
+theories/PCUICSafeConversion.vo (real: 140.66, user: 139.40, sys: 0.64, mem: 1007764 ko)
+COQC theories/PCUICSafeChecker.v
+File "./theories/PCUICSafeChecker.v", line 1035, characters 4-15:
+Warning:
+Automatically inlined signature for type Forall. Use [Derive Signature for Forall.] to avoid this.
+File "./theories/PCUICSafeChecker.v", line 1039, characters 4-19:
+Warning:
+Automatically inlined signature for type Forall. Use [Derive Signature for Forall.] to avoid this.
+Axioms:
+todounivs : forall A : Type, A
+todoeta : forall A : Type, A
+todo : string -> forall A : Type, A
+proof_irrelevance : forall (P : Prop) (p1 p2 : P), p1 = p2
+normalisation'
+ : forall (cf : checker_flags) (Σ : global_env_ext) (Γ : context) (t : term),
+ wf Σ -> wellformed Σ Γ t -> Acc (cored Σ.1 Γ) t
+ind_guard : mutual_inductive_body -> bool
+functional_extensionality_dep
+ : forall (A : Type) (B : A -> Type) (f g : forall x : A, B x),
+ (forall x : A, f x = g x) -> f = g
+PCUICUnivSubstitution.fix_guard_subst_instance
+ : forall (mfix : mfixpoint term) (u : Instance.t),
+ fix_guard mfix ->
+ fix_guard
+ (map (map_def (subst_instance_constr u) (subst_instance_constr u)) mfix)
+fix_guard_subst
+ : forall (mfix : list (def term)) (s : list term) (k : nat),
+ let k' := (#|mfix| + k)%nat in
+ let mfix' := map (map_def (subst s k) (subst s k')) mfix in
+ fix_guard mfix -> fix_guard mfix'
+fix_guard_red1
+ : forall (Σ : global_env) (Γ : context) (mfix mfix' : mfixpoint term)
+ (idx : nat),
+ fix_guard mfix ->
+ red1 Σ Γ (tFix mfix idx) (tFix mfix' idx) -> fix_guard mfix'
+fix_guard_lift
+ : forall (mfix : list (def term)) (n k : nat),
+ let k' := (#|mfix| + k)%nat in
+ let mfix' := map (map_def (lift n k) (lift n k')) mfix in
+ fix_guard mfix -> fix_guard mfix'
+fix_guard_eq_term
+ : forall (mfix mfix' : mfixpoint term) (idx : nat),
+ fix_guard mfix -> tFix mfix idx ≡ tFix mfix' idx -> fix_guard mfix'
+fix_guard : mfixpoint term -> bool
+PCUICUnivSubstitution.cofix_guard_subst_instance
+ : forall (mfix : mfixpoint term) (u : Instance.t),
+ cofix_guard mfix ->
+ cofix_guard
+ (map (map_def (subst_instance_constr u) (subst_instance_constr u)) mfix)
+cofix_guard_subst
+ : forall (mfix : list (def term)) (s : list term) (k : nat),
+ let k' := (#|mfix| + k)%nat in
+ let mfix' := map (map_def (subst s k) (subst s k')) mfix in
+ cofix_guard mfix -> cofix_guard mfix'
+cofix_guard_red1
+ : forall (Σ : global_env) (Γ : context) (mfix mfix' : mfixpoint term)
+ (idx : nat),
+ cofix_guard mfix ->
+ red1 Σ Γ (tCoFix mfix idx) (tCoFix mfix' idx) -> cofix_guard mfix'
+cofix_guard_lift
+ : forall (mfix : list (def term)) (n k : nat),
+ let k' := (#|mfix| + k)%nat in
+ let mfix' := map (map_def (lift n k) (lift n k')) mfix in
+ cofix_guard mfix -> cofix_guard mfix'
+cofix_guard_eq_term
+ : forall (mfix mfix' : mfixpoint term) (idx : nat),
+ cofix_guard mfix ->
+ tCoFix mfix idx ≡ tCoFix mfix' idx -> cofix_guard mfix'
+cofix_guard : mfixpoint term -> bool
+theories/PCUICSafeChecker.vo (real: 56.94, user: 56.09, sys: 0.61, mem: 958816 ko)
+COQC theories/SafeTemplateChecker.v
+COQC theories/PCUICSafeRetyping.v
+theories/SafeTemplateChecker.vo (real: 2.78, user: 2.42, sys: 0.35, mem: 703592 ko)
+COQC theories/Extraction.v
+theories/PCUICSafeRetyping.vo (real: 6.81, user: 6.30, sys: 0.48, mem: 733700 ko)
+theories/Extraction.vo (real: 4.93, user: 4.47, sys: 0.43, mem: 749140 ko)
+echo "Done extracting the safe checker, moving extraction files!"
+Done extracting the safe checker, moving extraction files!
+./clean_extraction.sh
+Cleaning result of extraction
+Moving All_Forall.ml to all_Forall.ml
+Moving All_Forall.mli to all_Forall.mli
+Moving Ascii.ml to ascii.ml
+Moving Ascii.mli to ascii.mli
+Moving Ast0.ml to ast0.ml
+Moving Ast0.mli to ast0.mli
+Moving BasicAst.ml to basicAst.ml
+Moving BasicAst.mli to basicAst.mli
+Moving Basics.ml to basics.ml
+Moving Basics.mli to basics.mli
+Moving BinInt.ml to binInt.ml
+Moving BinInt.mli to binInt.mli
+Moving BinNat.ml to binNat.ml
+Moving BinNat.mli to binNat.mli
+Moving BinNums.ml to binNums.ml
+Moving BinNums.mli to binNums.mli
+Moving BinPos.ml to binPos.ml
+Moving BinPos.mli to binPos.mli
+Moving Bool.ml to bool.ml
+Moving Bool.mli to bool.mli
+Moving Byte.ml to byte.ml
+Moving Byte.mli to byte.mli
+Moving Classes0.ml to classes0.ml
+Moving Classes0.mli to classes0.mli
+Moving Compare_dec.ml to compare_dec.ml
+Moving Compare_dec.mli to compare_dec.mli
+Moving Datatypes.ml to datatypes.ml
+Moving Datatypes.mli to datatypes.mli
+Moving Environment.ml to environment.ml
+Moving Environment.mli to environment.mli
+Moving EqDecInstances.ml to eqDecInstances.ml
+Moving EqDecInstances.mli to eqDecInstances.mli
+Moving EqdepFacts.ml to eqdepFacts.ml
+Moving EqdepFacts.mli to eqdepFacts.mli
+Moving Equalities.ml to equalities.ml
+Moving Equalities.mli to equalities.mli
+Moving List0.ml to list0.ml
+Moving List0.mli to list0.mli
+Moving MCCompare.ml to mCCompare.ml
+Moving MCCompare.mli to mCCompare.mli
+Moving MCList.ml to mCList.ml
+Moving MCList.mli to mCList.mli
+Moving MCOption.ml to mCOption.ml
+Moving MCOption.mli to mCOption.mli
+Moving MCProd.ml to mCProd.ml
+Moving MCProd.mli to mCProd.mli
+Moving MCString.ml to mCString.ml
+Moving MCString.mli to mCString.mli
+Moving MSetDecide.ml to mSetDecide.ml
+Moving MSetDecide.mli to mSetDecide.mli
+Moving MSetFacts.ml to mSetFacts.ml
+Moving MSetFacts.mli to mSetFacts.mli
+Moving MSetInterface.ml to mSetInterface.ml
+Moving MSetInterface.mli to mSetInterface.mli
+Moving MSetList.ml to mSetList.ml
+Moving MSetList.mli to mSetList.mli
+Moving MSetProperties.ml to mSetProperties.ml
+Moving MSetProperties.mli to mSetProperties.mli
+Moving MSetWeakList.ml to mSetWeakList.ml
+Moving MSetWeakList.mli to mSetWeakList.mli
+Moving Nat0.ml to nat0.ml
+Moving Nat0.mli to nat0.mli
+Moving Orders.ml to orders.ml
+Moving Orders.mli to orders.mli
+Moving OrdersFacts.ml to ordersFacts.ml
+Moving OrdersFacts.mli to ordersFacts.mli
+Moving OrdersLists.ml to ordersLists.ml
+Moving OrdersLists.mli to ordersLists.mli
+Moving OrdersTac.ml to ordersTac.ml
+Moving OrdersTac.mli to ordersTac.mli
+Moving PCUICAst.ml to pCUICAst.ml
+Moving PCUICAst.mli to pCUICAst.mli
+Moving PCUICAstUtils.ml to pCUICAstUtils.ml
+Moving PCUICAstUtils.mli to pCUICAstUtils.mli
+Moving PCUICChecker.ml to pCUICChecker.ml
+Moving PCUICChecker.mli to pCUICChecker.mli
+Moving PCUICCumulativity.ml to pCUICCumulativity.ml
+Moving PCUICCumulativity.mli to pCUICCumulativity.mli
+Moving PCUICEquality.ml to pCUICEquality.ml
+Moving PCUICEquality.mli to pCUICEquality.mli
+Moving PCUICLiftSubst.ml to pCUICLiftSubst.ml
+Moving PCUICLiftSubst.mli to pCUICLiftSubst.mli
+Moving PCUICNormal.ml to pCUICNormal.ml
+Moving PCUICNormal.mli to pCUICNormal.mli
+Moving PCUICPosition.ml to pCUICPosition.ml
+Moving PCUICPosition.mli to pCUICPosition.mli
+Moving PCUICPretty.ml to pCUICPretty.ml
+Moving PCUICPretty.mli to pCUICPretty.mli
+Moving PCUICReflect.ml to pCUICReflect.ml
+Moving PCUICReflect.mli to pCUICReflect.mli
+Moving PCUICSafeChecker.ml to pCUICSafeChecker.ml
+Moving PCUICSafeChecker.mli to pCUICSafeChecker.mli
+Moving PCUICSafeConversion.ml to pCUICSafeConversion.ml
+Moving PCUICSafeConversion.mli to pCUICSafeConversion.mli
+Moving PCUICSafeLemmata.ml to pCUICSafeLemmata.ml
+Moving PCUICSafeLemmata.mli to pCUICSafeLemmata.mli
+Moving PCUICSafeReduce.ml to pCUICSafeReduce.ml
+Moving PCUICSafeReduce.mli to pCUICSafeReduce.mli
+Moving PCUICTyping.ml to pCUICTyping.ml
+Moving PCUICTyping.mli to pCUICTyping.mli
+Moving PCUICUnivSubst.ml to pCUICUnivSubst.ml
+Moving PCUICUnivSubst.mli to pCUICUnivSubst.mli
+Moving PeanoNat.ml to peanoNat.ml
+Moving PeanoNat.mli to peanoNat.mli
+Moving SafeTemplateChecker.ml to safeTemplateChecker.ml
+Moving SafeTemplateChecker.mli to safeTemplateChecker.mli
+Moving Specif.ml to specif.ml
+Moving Specif.mli to specif.mli
+Moving String0.ml to string0.ml
+Moving String0.mli to string0.mli
+Moving TemplateToPCUIC.ml to templateToPCUIC.ml
+Moving TemplateToPCUIC.mli to templateToPCUIC.mli
+Moving Typing0.ml to typing0.ml
+Moving Typing0.mli to typing0.mli
+Moving UnivSubst0.ml to univSubst0.ml
+Moving UnivSubst0.mli to univSubst0.mli
+Moving Universes0.ml to universes0.ml
+Moving Universes0.mli to universes0.mli
+Moving config0.ml to config0.ml
+mv: 'config0.ml' and 'config0.ml' are the same file
+Moving config0.mli to config0.mli
+mv: 'config0.mli' and 'config0.mli' are the same file
+Moving g_metacoq_safechecker.ml to g_metacoq_safechecker.ml
+mv: 'g_metacoq_safechecker.ml' and 'g_metacoq_safechecker.ml' are the same file
+Moving g_metacoq_safechecker.mlg to g_metacoq_safechecker.mlg
+mv: 'g_metacoq_safechecker.mlg' and 'g_metacoq_safechecker.mlg' are the same file
+Moving metacoq_safechecker_plugin.mlpack to metacoq_safechecker_plugin.mlpack
+mv: 'metacoq_safechecker_plugin.mlpack' and 'metacoq_safechecker_plugin.mlpack' are the same file
+Moving monad_utils.ml to monad_utils.ml
+mv: 'monad_utils.ml' and 'monad_utils.ml' are the same file
+Moving monad_utils.mli to monad_utils.mli
+mv: 'monad_utils.mli' and 'monad_utils.mli' are the same file
+Moving ssrbool.ml to ssrbool.ml
+mv: 'ssrbool.ml' and 'ssrbool.ml' are the same file
+Moving ssrbool.mli to ssrbool.mli
+mv: 'ssrbool.mli' and 'ssrbool.mli' are the same file
+Moving uGraph0.ml to uGraph0.ml
+mv: 'uGraph0.ml' and 'uGraph0.ml' are the same file
+Moving uGraph0.mli to uGraph0.mli
+mv: 'uGraph0.mli' and 'uGraph0.mli' are the same file
+Moving utils.ml to utils.ml
+mv: 'utils.ml' and 'utils.ml' are the same file
+Moving utils.mli to utils.mli
+mv: 'utils.mli' and 'utils.mli' are the same file
+Moving wGraph.ml to wGraph.ml
+mv: 'wGraph.ml' and 'wGraph.ml' are the same file
+Moving wGraph.mli to wGraph.mli
+mv: 'wGraph.mli' and 'wGraph.mli' are the same file
+Removing: src/all_Forall.ml src/all_Forall.mli src/ascii.ml src/ascii.mli src/ast0.ml src/ast0.mli src/ast_denoter.ml src/ast_quoter.ml src/astUtils.ml src/astUtils.mli src/basicAst.ml src/basicAst.mli src/basics.ml src/basics.mli src/binInt.ml src/binInt.mli src/binNat.ml src/binNat.mli src/binNums.ml src/binNums.mli src/binPosDef.ml src/binPosDef.mli src/binPos.ml src/binPos.mli src/bool.ml src/bool.mli src/common0.ml src/common0.mli src/compare_dec.ml src/compare_dec.mli src/config0.ml src/config0.mli src/cRelationClasses.ml src/cRelationClasses.mli src/datatypes.ml src/datatypes.mli src/decimal.ml src/decimal.mli src/denoter.ml src/environment.ml src/environment.mli src/equalities.ml src/equalities.mli src/extractable.ml src/extractable.mli src/hexadecimal.ml src/hexadecimal.mli src/liftSubst.ml src/liftSubst.mli src/list0.ml src/list0.mli src/logic0.ml src/logic0.mli src/mCPrelude.mli src/mCPrelude.ml src/mCCompare.ml src/mCCompare.mli src/mCList.ml src/mCList.mli src/mCOption.ml src/mCOption.mli src/mCProd.ml src/mCProd.mli src/mCRelations.ml src/mCRelations.mli src/mCString.ml src/mCString.mli src/mSetDecide.ml src/mSetDecide.mli src/mSetFacts.ml src/mSetFacts.mli src/mSetInterface.ml src/mSetInterface.mli src/mSetList.ml src/mSetList.mli src/mSetProperties.ml src/mSetProperties.mli src/nat0.ml src/nat0.mli src/numeral.ml src/numeral.mli src/orderedType0.ml src/orderedType0.mli src/ordersFacts.ml src/ordersFacts.mli src/ordersLists.ml src/ordersLists.mli src/orders.ml src/orders.mli src/ordersTac.ml src/ordersTac.mli src/peanoNat.ml src/peanoNat.mli src/plugin_core.ml src/plugin_core.mli src/pretty.ml src/pretty.mli src/reification.ml src/quoter.ml src/run_extractable.ml src/run_extractable.mli src/specif.ml src/specif.mli src/string0.ml src/string0.mli src/tm_util.ml src/universes0.ml src/universes0.mli src/univSubst0.ml src/univSubst0.mli
+make[4]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/safechecker'
+make -f Makefile.plugin
+make[4]: Entering directory '/builds/coq/coq/_build_ci/metacoq/safechecker'
+COQDEP VFILES
+CAMLDEP src/safeTemplateChecker.mli
+CAMLDEP src/pCUICSafeChecker.mli
+CAMLDEP src/pCUICSafeConversion.mli
+CAMLDEP src/pCUICSafeReduce.mli
+CAMLDEP src/pCUICPretty.mli
+CAMLDEP src/pCUICChecker.mli
+CAMLDEP src/templateToPCUIC.mli
+CAMLDEP src/pCUICSafeLemmata.mli
+CAMLDEP src/pCUICNormal.mli
+CAMLDEP src/pCUICCumulativity.mli
+CAMLDEP src/pCUICPosition.mli
+CAMLDEP src/pCUICUnivSubst.mli
+CAMLDEP src/pCUICTyping.mli
+CAMLDEP src/pCUICEquality.mli
+CAMLDEP src/pCUICReflect.mli
+CAMLDEP src/eqDecInstances.mli
+CAMLDEP src/pCUICLiftSubst.mli
+CAMLDEP src/pCUICAstUtils.mli
+CAMLDEP src/pCUICAst.mli
+CAMLDEP src/typing0.mli
+CAMLDEP src/wGraph.mli
+CAMLDEP src/uGraph0.mli
+CAMLDEP src/utils.mli
+CAMLDEP src/monad_utils.mli
+CAMLDEP src/ssrbool.mli
+CAMLDEP src/eqdepFacts.mli
+CAMLDEP src/mSetWeakList.mli
+CAMLDEP src/classes0.mli
+OCAMLLIBDEP src/metacoq_safechecker_plugin.mlpack
+CAMLDEP src/safeTemplateChecker.ml
+CAMLDEP src/pCUICSafeChecker.ml
+CAMLDEP src/pCUICSafeConversion.ml
+CAMLDEP src/pCUICSafeReduce.ml
+CAMLDEP src/pCUICPretty.ml
+CAMLDEP src/pCUICChecker.ml
+CAMLDEP src/templateToPCUIC.ml
+CAMLDEP src/pCUICSafeLemmata.ml
+CAMLDEP src/pCUICNormal.ml
+CAMLDEP src/pCUICPosition.ml
+CAMLDEP src/pCUICCumulativity.ml
+CAMLDEP src/pCUICUnivSubst.ml
+CAMLDEP src/pCUICTyping.ml
+CAMLDEP src/pCUICEquality.ml
+CAMLDEP src/pCUICReflect.ml
+CAMLDEP src/eqDecInstances.ml
+CAMLDEP src/pCUICLiftSubst.ml
+CAMLDEP src/pCUICAstUtils.ml
+CAMLDEP src/pCUICAst.ml
+CAMLDEP src/typing0.ml
+CAMLDEP src/wGraph.ml
+CAMLDEP src/uGraph0.ml
+CAMLDEP src/utils.ml
+CAMLDEP src/monad_utils.ml
+CAMLDEP src/ssrbool.ml
+CAMLDEP src/eqdepFacts.ml
+CAMLDEP src/classes0.ml
+CAMLDEP src/mSetWeakList.ml
+CAMLDEP src/g_metacoq_safechecker.ml
+CAMLC -c src/monad_utils.mli
+CAMLC -c src/mSetWeakList.mli
+src/monad_utils.cmi (real: 0.10, user: 0.03, sys: 0.01, mem: 19196 ko)
+CAMLC -c src/eqdepFacts.mli
+src/mSetWeakList.cmi (real: 0.10, user: 0.03, sys: 0.01, mem: 20008 ko)
+CAMLC -c src/utils.mli
+src/utils.cmi (real: src/eqdep0.04Fac,t s.ucsmie r(:re al:0.03 , sys: 0.01, mem: 19340 ko)
+0.04, user: 0.03, sys: 0.01, mem: 19268 ko)
+CAMLC -c src/ssrbool.mli
+CAMLC -c src/typing0.mli
+src/typing0.cmi (real: 0.04, user: 0.02, sys: 0.01, mem: 20364 ko)
+CAMLC -c src/classes0.mli
+src/ssrbool.cmi (real: 0.05, user: 0.03, sys: 0.01, mem: 19332 ko)
+CAMLC -c src/pCUICAst.mli
+src/classes0.cmi (real: 0.05, user: 0.03, sys: 0.01, mem: 19328 ko)
+CAMLC -c src/pCUICNormal.mli
+src/pCUICAst.cmi (real: 0.05, user: 0.03, sys: 0.01, mem: 21440 ko)
+CAMLC -c src/pCUICCumulativity.mli
+src/pCUICNormal.cmi (real: 0.04, user: 0.03, sys: 0.01, mem: 19372 ko)
+CAMLOPT -c -for-pack Metacoq_safechecker_plugin src/monad_utils.ml
+src/pCUICCumulativity.cmi (real: 0.03, user: 0.02, sys: 0.01, mem: 19220 ko)
+CAMLOPT -c -for-pack Metacoq_safechecker_plugin src/mSetWeakList.ml
+src/monad_utils.cmx (real: 0.05, user: 0.03, sys: 0.01, mem: 21960 ko)
+CAMLOPT -c -for-pack Metacoq_safechecker_plugin src/eqdepFacts.ml
+src/mSetWeakList.cmx (real: 0.07, user: 0.05, sys: 0.01, mem: 25168 ko)
+CAMLOPT -c -for-pack Metacoq_safechecker_plugin src/utils.ml
+src/eqdepFacts.cmx (real: 0.04, user: 0.02, sys: 0.02, mem: 22016 ko)
+CAMLOPT -c -for-pack Metacoq_safechecker_plugin src/ssrbool.ml
+src/utils.cmx (real: 0.05, user: 0.03, sys: 0.01, mem: 22096 ko)
+CAMLC -c src/wGraph.mli
+src/ssrbool.cmx (real: 0.04, user: 0.02, sys: 0.01, mem: 22104 ko)
+CAMLOPT -c -for-pack Metacoq_safechecker_plugin src/typing0.ml
+src/wGraph.cmi (real: 0.05, user: 0.04, sys: 0.01, mem: 22812 ko)
+CAMLOPT -c -for-pack Metacoq_safechecker_plugin src/classes0.ml
+src/typing0.cmx (real: 0.07, user: 0.04, sys: 0.02, mem: 24164 ko)
+CAMLOPT -c -for-pack Metacoq_safechecker_plugin src/pCUICAst.ml
+src/classes0.cmx (real: 0.04, user: 0.03, sys: 0.01, mem: 22056 ko)
+CAMLC -c src/pCUICAstUtils.mli
+src/pCUICAstUtils.cmi (real: 0.04, user: 0.03, sys: 0.01, mem: 20292 ko)
+CAMLC -c src/pCUICUnivSubst.mli
+src/pCUICAst.cmx (real: 0.08, user: 0.05, sys: 0.02, mem: 26084 ko)
+CAMLC -c src/pCUICLiftSubst.mli
+src/pCUICUnivSubst.cmi (real: 0.04, user: 0.04, sys: 0.00, mem: 20452 ko)
+CAMLC -c src/eqDecInstances.mli
+src/pCUICLiftSubst.cmi (real: 0.04, user: 0.02, sys: 0.01, mem: 20432 ko)
+CAMLC -c src/pCUICReflect.mli
+src/eqDecInstances.cmi (real: 0.03, user: 0.02, sys: 0.01, mem: 19260 ko)
+CAMLOPT -c -for-pack Metacoq_safechecker_plugin src/pCUICNormal.ml
+src/pCUICReflect.cmi (real: 0.04, user: 0.02, sys: 0.01, mem: 20232 ko)
+CAMLC -c src/pCUICPosition.mli
+src/pCUICNormal.cmx (real: 0.04, user: 0.03, sys: 0.01, mem: 22004 ko)
+CAMLC -c src/templateToPCUIC.mli
+src/pCUICPosition.cmi (real: 0.04, user: 0.02, sys: 0.01, mem: 20460 ko)
+CAMLC -c src/pCUICSafeLemmata.mli
+src/pCUICSafeLemmata.cmi (real: 0.03, user: 0.02, sys: 0.01, mem: 19172 ko)
+CAMLOPT -c -for-pack Metacoq_safechecker_plugin src/pCUICCumulativity.ml
+src/templateToPCUIC.cmi (real: 0.05, user: 0.04, sys: 0.01, mem: 20348 ko)
+CAMLOPT -c -for-pack Metacoq_safechecker_plugin src/wGraph.ml
+src/pCUICCumulativity.cmx (real: 0.04, user: 0.03, sys: 0.01, mem: 22036 ko)
+CAMLC -c src/uGraph0.mli
+src/uGraph0.cmi (real: 0.07, user: 0.05, sys: 0.01, mem: 24772 ko)
+CAMLOPT -c -for-pack Metacoq_safechecker_plugin src/pCUICAstUtils.ml
+src/wGraph.cmx (real: 0.14, user: 0.12, sys: 0.02, mem: 31828 ko)
+CAMLOPT -c -for-pack Metacoq_safechecker_plugin src/pCUICUnivSubst.ml
+src/pCUICAstUtils.cmx (real: 0.08, user: 0.06, sys: 0.02, mem: 25948 ko)
+CAMLOPT -c -for-pack Metacoq_safechecker_plugin src/pCUICLiftSubst.ml
+src/pCUICUnivSubst.cmx (real: 0.06, user: 0.04, sys: 0.01, mem: 25096 ko)
+CAMLOPT -c -for-pack Metacoq_safechecker_plugin src/eqDecInstances.ml
+src/eqDecInstances.cmx (real: 0.05, user: 0.03, sys: 0.02, mem: 22024 ko)
+CAMLOPT -c -for-pack Metacoq_safechecker_plugin src/pCUICReflect.ml
+src/pCUICLiftSubst.cmx (real: 0.08, user: 0.06, sys: 0.02, mem: 26296 ko)
+CAMLC -c src/pCUICEquality.mli
+src/pCUICReflect.cmx (real: 0.06, user: 0.05, sys: 0.01, mem: 24360 ko)
+CAMLC -c src/pCUICTyping.mli
+src/pCUICEquality.cmi (real: 0.04, user: 0.03, sys: 0.01, mem: 20432 ko)
+CAMLOPT -c -for-pack Metacoq_safechecker_plugin src/pCUICPosition.ml
+src/pCUICTyping.cmi (real: 0.04, user: 0.03, sys: 0.01, mem: 21428 ko)
+CAMLOPT -c -for-pack Metacoq_safechecker_plugin src/templateToPCUIC.ml
+src/pCUICPosition.cmx (real: 0.09, user: 0.07, sys: 0.01, mem: 26028 ko)
+CAMLOPT -c -for-pack Metacoq_safechecker_plugin src/pCUICSafeLemmata.ml
+src/templateToPCUIC.cmx (real: 0.07, user: 0.06, sys: 0.01, mem: 25572 ko)
+CAMLC -c src/pCUICSafeReduce.mli
+src/pCUICSafeLemmata.cmx (real: 0.05, user: 0.03, sys: 0.01, mem: 22056 ko)
+CAMLOPT -c -for-pack Metacoq_safechecker_plugin src/uGraph0.ml
+src/pCUICSafeReduce.cmi (real: 0.04, user: 0.03, sys: 0.01, mem: 21588 ko)
+CAMLOPT -c -for-pack Metacoq_safechecker_plugin src/pCUICEquality.ml
+src/pCUICEquality.cmx (real: 0.07, user: 0.05, sys: 0.02, mem: 26416 ko)
+CAMLOPT -c -for-pack Metacoq_safechecker_plugin src/pCUICTyping.ml
+src/uGraph0.cmx (real: 0.13, user: 0.11, sys: 0.02, mem: 30828 ko)
+CAMLC -c src/pCUICChecker.mli
+src/pCUICChecker.cmi (real: 0.04, user: 0.03, sys: 0.01, mem: 21248 ko)
+CAMLC -c src/pCUICSafeConversion.mli
+src/pCUICTyping.cmx (real: 0.10, user: 0.08, sys: 0.02, mem: 27292 ko)
+CAMLOPT -c -for-pack Metacoq_safechecker_plugin src/pCUICChecker.ml
+src/pCUICSafeConversion.cmi (real: 0.05, user: 0.04, sys: 0.01, mem: 23348 ko)
+CAMLC -c src/pCUICPretty.mli
+src/pCUICChecker.cmx (real: 0.06, user: 0.04, sys: 0.02, mem: 25104 ko)
+CAMLOPT -c -for-pack Metacoq_safechecker_plugin src/pCUICSafeReduce.ml
+src/pCUICPretty.cmi (real: 0.04, user: 0.03, sys: 0.01, mem: 20340 ko)
+CAMLOPT -c -for-pack Metacoq_safechecker_plugin src/pCUICPretty.ml
+src/pCUICSafeReduce.cmx (real: 0.10, user: 0.07, sys: 0.02, mem: 27680 ko)
+CAMLC -c src/pCUICSafeChecker.mli
+src/pCUICPretty.cmx (real: 0.11, user: 0.09, sys: 0.02, mem: 28948 ko)
+CAMLOPT -c -for-pack Metacoq_safechecker_plugin src/pCUICSafeConversion.ml
+src/pCUICSafeChecker.cmi (real: 0.06, user: 0.06, sys: 0.00, mem: 24128 ko)
+CAMLC -c src/safeTemplateChecker.mli
+src/safeTemplateChecker.cmi (real: 0.05, user: 0.03, sys: 0.01, mem: 21632 ko)
+src/pCUICSafeConversion.cmx (real: 0.27, user: 0.24, sys: 0.03, mem: 43304 ko)
+CAMLOPT -c -for-pack Metacoq_safechecker_plugin src/pCUICSafeChecker.ml
+src/pCUICSafeChecker.cmx (real: 0.34, user: 0.29, sys: 0.04, mem: 43492 ko)
+CAMLOPT -c -for-pack Metacoq_safechecker_plugin src/safeTemplateChecker.ml
+src/safeTemplateChecker.cmx (real: 0.07, user: 0.05, sys: 0.01, mem: 27148 ko)
+CAMLOPT -c -for-pack Metacoq_safechecker_plugin src/g_metacoq_safechecker.ml
+src/g_metacoq_safechecker.cmx (real: 0.11, user: 0.09, sys: 0.02, mem: 35368 ko)
+CAMLOPT -pack -o src/metacoq_safechecker_plugin.cmx
+src/metacoq_safechecker_plugin.cmx (real: 0.10, user: 0.06, sys: 0.03, mem: 30436 ko)
+CAMLOPT -a -o src/metacoq_safechecker_plugin.cmxa
+src/metacoq_safechecker_plugin.cmxa (real: 0.05, user: 0.00, sys: 0.01, mem: 13624 ko)
+CAMLOPT -shared -o src/metacoq_safechecker_plugin.cmxs
+src/metacoq_safechecker_plugin.cmxs (real: 0.14, user: 0.11, sys: 0.03, mem: 20224 ko)
+COQC theories/Loader.v
+theories/Loader.vo (real: 0.09, user: 0.05, sys: 0.03, mem: 63536 ko)
+make[4]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/safechecker'
+make[3]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/safechecker'
+make -C erasure
+make[3]: Entering directory '/builds/coq/coq/_build_ci/metacoq/erasure'
+cat metacoq-config > _CoqProject
+cat _CoqProject.in >> _CoqProject
+coq_makefile -f _CoqProject -o Makefile.erasure
+Warning: ../template-coq/theories (used in -R or -Q) is not a subdirectory of the current directory
+
+make -f Makefile.erasure
+make[4]: Entering directory '/builds/coq/coq/_build_ci/metacoq/erasure'
+COQDEP VFILES
+COQC theories/EAst.v
+theories/EAst.vo (real: 0.97, user: 0.72, sys: 0.24, mem: 477800 ko)
+COQC theories/EAstUtils.v
+COQC theories/EInduction.v
+theories/EInduction.vo (real: 0.97, user: 0.71, sys: 0.25, mem: 479012 ko)
+COQC theories/Extract.v
+theories/EAstUtils.vo (real: 1.36, user: 1.10, sys: 0.26, mem: 487520 ko)
+COQC theories/ELiftSubst.v
+theories/Extract.vo (real: 1.89, user: 1.57, sys: 0.32, mem: 617808 ko)
+COQC theories/EArities.v
+theories/EArities.vo (real: 6.12, user: 5.66, sys: 0.42, mem: 643396 ko)
+theories/ELiftSubst.vo (real: 10.89, user: 10.08, sys: 0.75, mem: 521520 ko)
+COQC theories/ETyping.v
+COQC theories/ECSubst.v
+theories/ETyping.vo (real: 1.01, user: 0.73, sys: 0.27, mem: 487644 ko)
+COQC theories/EPretty.v
+theories/ECSubst.vo (real: 1.31, user: 1.05, sys: 0.25, mem: 512080 ko)
+COQC theories/EWndEval.v
+theories/EPretty.vo (real: 1.02, user: 0.77, sys: 0.24, mem: 488076 ko)
+COQC theories/EWcbvEval.v
+theories/EWndEval.vo (real: 0.97, user: 0.70, sys: 0.26, mem: 485084 ko)
+theories/EWcbvEval.vo (real: 4.15, user: 3.85, sys: 0.28, mem: 520080 ko)
+COQC theories/EAll.v
+COQC theories/Prelim.v
+theories/EAll.vo (real: 1.76, user: 1.42, sys: 0.32, mem: 619396 ko)
+theories/Prelim.vo (real: 3.82, user: 3.39, sys: 0.40, mem: 741428 ko)
+COQC theories/ESubstitution.v
+COQC theories/EInversion.v
+theories/EInversion.vo (real: 3.19, user: 2.67, sys: 0.50, mem: 729072 ko)
+theories/ESubstitution.vo (real: 14.12, user: 13.39, sys: 0.67, mem: 794032 ko)
+COQC theories/ErasureCorrectness.v
+Axioms:
+todounivs : forall A : Type, A
+todoeta : forall A : Type, A
+todo : string -> forall A : Type, A
+ind_guard : mutual_inductive_body -> bool
+functional_extensionality_dep
+ : forall (A : Type) (B : A -> Type) (f g : forall x : A, B x),
+ (forall x : A, f x = g x) -> f = g
+fix_guard_subst_instance
+ : forall (mfix : mfixpoint term) (u : Instance.t),
+ fix_guard mfix ->
+ fix_guard
+ (map (map_def (subst_instance_constr u) (subst_instance_constr u)) mfix)
+fix_guard_subst
+ : forall (mfix : list (def term)) (s : list term) (k : nat),
+ let k' := #|mfix| + k in
+ let mfix' :=
+ map (map_def (PCUICLiftSubst.subst s k) (PCUICLiftSubst.subst s k'))
+ mfix in
+ fix_guard mfix -> fix_guard mfix'
+fix_guard_red1
+ : forall (Σ : global_env) (Γ : context) (mfix mfix' : mfixpoint term)
+ (idx : nat),
+ fix_guard mfix ->
+ red1 Σ Γ (tFix mfix idx) (tFix mfix' idx) -> fix_guard mfix'
+fix_guard_lift
+ : forall (mfix : list (def term)) (n k : nat),
+ let k' := #|mfix| + k in
+ let mfix' :=
+ map (map_def (PCUICLiftSubst.lift n k) (PCUICLiftSubst.lift n k')) mfix
+ in
+ fix_guard mfix -> fix_guard mfix'
+fix_guard_eq_term
+ : forall (mfix mfix' : mfixpoint term) (idx : nat),
+ fix_guard mfix ->
+ PCUICEquality.upto_names (tFix mfix idx) (tFix mfix' idx) ->
+ fix_guard mfix'
+fix_guard : mfixpoint term -> bool
+erases_closed
+ : forall (Σ : global_env_ext) (Γ : list context_decl)
+ (a : term) (e : E.term),
+ PCUICLiftSubst.closedn #|Γ| a -> Σ;;; Γ |- a ⇝ℇ e -> closedn #|Γ| e
+cofix_guard_subst_instance
+ : forall (mfix : mfixpoint term) (u : Instance.t),
+ cofix_guard mfix ->
+ cofix_guard
+ (map (map_def (subst_instance_constr u) (subst_instance_constr u)) mfix)
+cofix_guard_subst
+ : forall (mfix : list (def term)) (s : list term) (k : nat),
+ let k' := #|mfix| + k in
+ let mfix' :=
+ map (map_def (PCUICLiftSubst.subst s k) (PCUICLiftSubst.subst s k'))
+ mfix in
+ cofix_guard mfix -> cofix_guard mfix'
+cofix_guard_red1
+ : forall (Σ : global_env) (Γ : context) (mfix mfix' : mfixpoint term)
+ (idx : nat),
+ cofix_guard mfix ->
+ red1 Σ Γ (tCoFix mfix idx) (tCoFix mfix' idx) -> cofix_guard mfix'
+cofix_guard_lift
+ : forall (mfix : list (def term)) (n k : nat),
+ let k' := #|mfix| + k in
+ let mfix' :=
+ map (map_def (PCUICLiftSubst.lift n k) (PCUICLiftSubst.lift n k')) mfix
+ in
+ cofix_guard mfix -> cofix_guard mfix'
+cofix_guard_eq_term
+ : forall (mfix mfix' : mfixpoint term) (idx : nat),
+ cofix_guard mfix ->
+ PCUICEquality.upto_names (tCoFix mfix idx) (tCoFix mfix' idx) ->
+ cofix_guard mfix'
+cofix_guard : mfixpoint term -> bool
+theories/ErasureCorrectness.vo (real: 58.09, user: 56.17, sys: 1.60, mem: 1113548 ko)
+COQC theories/ErasureFunction.v
+COQC theories/SafeErasureFunction.v
+theories/SafeErasureFunction.vo (real: 24.59, user: 23.34, sys: 1.11, mem: 854428 ko)
+Axioms:
+todounivs : forall A : Type, A
+todoeta : forall A : Type, A
+todo : string -> forall A : Type, A
+proof_irrelevance : forall (P : Prop) (p1 p2 : P), p1 = p2
+normalisation'
+ : forall (cf : checker_flags) (Σ : global_env_ext) (Γ : context) (t : term),
+ wf Σ -> wellformed Σ Γ t -> Acc (cored Σ.1 Γ) t
+ind_guard : mutual_inductive_body -> bool
+functional_extensionality_dep
+ : forall (A : Type) (B : A -> Type) (f g : forall x : A, B x),
+ (forall x : A, f x = g x) -> f = g
+PCUICUnivSubstitution.fix_guard_subst_instance
+ : forall (mfix : mfixpoint term) (u : Instance.t),
+ fix_guard mfix ->
+ fix_guard
+ (map
+ (map_def (PCUICUnivSubst.subst_instance_constr u)
+ (PCUICUnivSubst.subst_instance_constr u)) mfix)
+fix_guard_subst
+ : forall (mfix : list (def term)) (s : list term) (k : nat),
+ let k' := (#|mfix| + k)%nat in
+ let mfix' := map (map_def (subst s k) (subst s k')) mfix in
+ fix_guard mfix -> fix_guard mfix'
+fix_guard_red1
+ : forall (Σ : global_env) (Γ : context) (mfix mfix' : mfixpoint term)
+ (idx : nat),
+ fix_guard mfix ->
+ red1 Σ Γ (tFix mfix idx) (tFix mfix' idx) -> fix_guard mfix'
+fix_guard_lift
+ : forall (mfix : list (def term)) (n k : nat),
+ let k' := (#|mfix| + k)%nat in
+ let mfix' := map (map_def (lift n k) (lift n k')) mfix in
+ fix_guard mfix -> fix_guard mfix'
+fix_guard_eq_term
+ : forall (mfix mfix' : mfixpoint term) (idx : nat),
+ fix_guard mfix ->
+ PCUICEquality.upto_names (tFix mfix idx) (tFix mfix' idx) ->
+ fix_guard mfix'
+fix_guard : mfixpoint term -> bool
+PCUICUnivSubstitution.cofix_guard_subst_instance
+ : forall (mfix : mfixpoint term) (u : Instance.t),
+ cofix_guard mfix ->
+ cofix_guard
+ (map
+ (map_def (PCUICUnivSubst.subst_instance_constr u)
+ (PCUICUnivSubst.subst_instance_constr u)) mfix)
+cofix_guard_subst
+ : forall (mfix : list (def term)) (s : list term) (k : nat),
+ let k' := (#|mfix| + k)%nat in
+ let mfix' := map (map_def (subst s k) (subst s k')) mfix in
+ cofix_guard mfix -> cofix_guard mfix'
+cofix_guard_red1
+ : forall (Σ : global_env) (Γ : context) (mfix mfix' : mfixpoint term)
+ (idx : nat),
+ cofix_guard mfix ->
+ red1 Σ Γ (tCoFix mfix idx) (tCoFix mfix' idx) -> cofix_guard mfix'
+cofix_guard_lift
+ : forall (mfix : list (def term)) (n k : nat),
+ let k' := (#|mfix| + k)%nat in
+ let mfix' := map (map_def (lift n k) (lift n k')) mfix in
+ cofix_guard mfix -> cofix_guard mfix'
+cofix_guard_eq_term
+ : forall (mfix mfix' : mfixpoint term) (idx : nat),
+ cofix_guard mfix ->
+ PCUICEquality.upto_names (tCoFix mfix idx) (tCoFix mfix' idx) ->
+ cofix_guard mfix'
+cofix_guard : mfixpoint term -> bool
+theories/ErasureFunction.vo (real: 40.61, user: 39.21, sys: 1.22, mem: 1012876 ko)
+COQC theories/SafeTemplateErasure.v
+theories/SafeTemplateErasure.vo (real: 4.47, user: 3.99, sys: 0.45, mem: 806128 ko)
+COQC theories/Extraction.v
+theories/Extraction.vo (real: 6.38, user: 5.74, sys: 0.59, mem: 872556 ko)
+echo "Done extracting the erasure, moving extraction files!"
+Done extracting the erasure, moving extraction files!
+./clean_extraction.sh
+Cleaning result of extraction
+Moving All_Forall.ml to all_Forall.ml
+Moving All_Forall.mli to all_Forall.mli
+Moving Ascii.ml to ascii.ml
+Moving Ascii.mli to ascii.mli
+Moving Ast0.ml to ast0.ml
+Moving Ast0.mli to ast0.mli
+Moving AstUtils.ml to astUtils.ml
+Moving AstUtils.mli to astUtils.mli
+Moving BasicAst.ml to basicAst.ml
+Moving BasicAst.mli to basicAst.mli
+Moving Basics.ml to basics.ml
+Moving Basics.mli to basics.mli
+Moving BinInt.ml to binInt.ml
+Moving BinInt.mli to binInt.mli
+Moving BinNat.ml to binNat.ml
+Moving BinNat.mli to binNat.mli
+Moving BinNums.ml to binNums.ml
+Moving BinNums.mli to binNums.mli
+Moving BinPos.ml to binPos.ml
+Moving BinPos.mli to binPos.mli
+Moving Bool.ml to bool.ml
+Moving Bool.mli to bool.mli
+Moving Byte.ml to byte.ml
+Moving Byte.mli to byte.mli
+Moving Classes0.ml to classes0.ml
+Moving Classes0.mli to classes0.mli
+Moving Compare_dec.ml to compare_dec.ml
+Moving Compare_dec.mli to compare_dec.mli
+Moving Datatypes.ml to datatypes.ml
+Moving Datatypes.mli to datatypes.mli
+Moving EAst.ml to eAst.ml
+Moving EAst.mli to eAst.mli
+Moving EAstUtils.ml to eAstUtils.ml
+Moving EAstUtils.mli to eAstUtils.mli
+Moving ELiftSubst.ml to eLiftSubst.ml
+Moving ELiftSubst.mli to eLiftSubst.mli
+Moving EPretty.ml to ePretty.ml
+Moving EPretty.mli to ePretty.mli
+Moving ETyping.ml to eTyping.ml
+Moving ETyping.mli to eTyping.mli
+Moving Environment.ml to environment.ml
+Moving Environment.mli to environment.mli
+Moving EqDecInstances.ml to eqDecInstances.ml
+Moving EqDecInstances.mli to eqDecInstances.mli
+Moving EqdepFacts.ml to eqdepFacts.ml
+Moving EqdepFacts.mli to eqdepFacts.mli
+Moving Equalities.ml to equalities.ml
+Moving Equalities.mli to equalities.mli
+Moving ErasureFunction.ml to erasureFunction.ml
+Moving ErasureFunction.mli to erasureFunction.mli
+Moving Extract.ml to extract.ml
+Moving Extract.mli to extract.mli
+Moving Init.ml to init.ml
+Moving Init.mli to init.mli
+Moving LiftSubst.ml to liftSubst.ml
+Moving LiftSubst.mli to liftSubst.mli
+Moving List0.ml to list0.ml
+Moving List0.mli to list0.mli
+Moving MCCompare.ml to mCCompare.ml
+Moving MCCompare.mli to mCCompare.mli
+Moving MCList.ml to mCList.ml
+Moving MCList.mli to mCList.mli
+Moving MCOption.ml to mCOption.ml
+Moving MCOption.mli to mCOption.mli
+Moving MCProd.ml to mCProd.ml
+Moving MCProd.mli to mCProd.mli
+Moving MCString.ml to mCString.ml
+Moving MCString.mli to mCString.mli
+Moving MSetDecide.ml to mSetDecide.ml
+Moving MSetDecide.mli to mSetDecide.mli
+Moving MSetFacts.ml to mSetFacts.ml
+Moving MSetFacts.mli to mSetFacts.mli
+Moving MSetInterface.ml to mSetInterface.ml
+Moving MSetInterface.mli to mSetInterface.mli
+Moving MSetList.ml to mSetList.ml
+Moving MSetList.mli to mSetList.mli
+Moving MSetProperties.ml to mSetProperties.ml
+Moving MSetProperties.mli to mSetProperties.mli
+Moving MSetWeakList.ml to mSetWeakList.ml
+Moving MSetWeakList.mli to mSetWeakList.mli
+Moving Nat0.ml to nat0.ml
+Moving Nat0.mli to nat0.mli
+Moving Orders.ml to orders.ml
+Moving Orders.mli to orders.mli
+Moving OrdersFacts.ml to ordersFacts.ml
+Moving OrdersFacts.mli to ordersFacts.mli
+Moving OrdersLists.ml to ordersLists.ml
+Moving OrdersLists.mli to ordersLists.mli
+Moving OrdersTac.ml to ordersTac.ml
+Moving OrdersTac.mli to ordersTac.mli
+Moving PCUICAst.ml to pCUICAst.ml
+Moving PCUICAst.mli to pCUICAst.mli
+Moving PCUICAstUtils.ml to pCUICAstUtils.ml
+Moving PCUICAstUtils.mli to pCUICAstUtils.mli
+Moving PCUICChecker.ml to pCUICChecker.ml
+Moving PCUICChecker.mli to pCUICChecker.mli
+Moving PCUICCumulativity.ml to pCUICCumulativity.ml
+Moving PCUICCumulativity.mli to pCUICCumulativity.mli
+Moving PCUICEquality.ml to pCUICEquality.ml
+Moving PCUICEquality.mli to pCUICEquality.mli
+Moving PCUICLiftSubst.ml to pCUICLiftSubst.ml
+Moving PCUICLiftSubst.mli to pCUICLiftSubst.mli
+Moving PCUICNormal.ml to pCUICNormal.ml
+Moving PCUICNormal.mli to pCUICNormal.mli
+Moving PCUICPosition.ml to pCUICPosition.ml
+Moving PCUICPosition.mli to pCUICPosition.mli
+Moving PCUICPretty.ml to pCUICPretty.ml
+Moving PCUICPretty.mli to pCUICPretty.mli
+Moving PCUICReflect.ml to pCUICReflect.ml
+Moving PCUICReflect.mli to pCUICReflect.mli
+Moving PCUICSafeChecker.ml to pCUICSafeChecker.ml
+Moving PCUICSafeChecker.mli to pCUICSafeChecker.mli
+Moving PCUICSafeConversion.ml to pCUICSafeConversion.ml
+Moving PCUICSafeConversion.mli to pCUICSafeConversion.mli
+Moving PCUICSafeLemmata.ml to pCUICSafeLemmata.ml
+Moving PCUICSafeLemmata.mli to pCUICSafeLemmata.mli
+Moving PCUICSafeReduce.ml to pCUICSafeReduce.ml
+Moving PCUICSafeReduce.mli to pCUICSafeReduce.mli
+Moving PCUICSafeRetyping.ml to pCUICSafeRetyping.ml
+Moving PCUICSafeRetyping.mli to pCUICSafeRetyping.mli
+Moving PCUICTyping.ml to pCUICTyping.ml
+Moving PCUICTyping.mli to pCUICTyping.mli
+Moving PCUICUnivSubst.ml to pCUICUnivSubst.ml
+Moving PCUICUnivSubst.mli to pCUICUnivSubst.mli
+Moving PeanoNat.ml to peanoNat.ml
+Moving PeanoNat.mli to peanoNat.mli
+Moving Pretty.ml to pretty.ml
+Moving Pretty.mli to pretty.mli
+Moving SafeErasureFunction.ml to safeErasureFunction.ml
+Moving SafeErasureFunction.mli to safeErasureFunction.mli
+Moving SafeTemplateChecker.ml to safeTemplateChecker.ml
+Moving SafeTemplateChecker.mli to safeTemplateChecker.mli
+Moving SafeTemplateErasure.ml to safeTemplateErasure.ml
+Moving SafeTemplateErasure.mli to safeTemplateErasure.mli
+Moving Specif.ml to specif.ml
+Moving Specif.mli to specif.mli
+Moving String0.ml to string0.ml
+Moving String0.mli to string0.mli
+Moving TemplateToPCUIC.ml to templateToPCUIC.ml
+Moving TemplateToPCUIC.mli to templateToPCUIC.mli
+Moving Typing0.ml to typing0.ml
+Moving Typing0.mli to typing0.mli
+Moving UnivSubst0.ml to univSubst0.ml
+Moving UnivSubst0.mli to univSubst0.mli
+Moving Universes0.ml to universes0.ml
+Moving Universes0.mli to universes0.mli
+Moving config0.ml to config0.ml
+mv: 'config0.ml' and 'config0.ml' are the same file
+Moving config0.mli to config0.mli
+mv: 'config0.mli' and 'config0.mli' are the same file
+Moving g_metacoq_erasure.ml to g_metacoq_erasure.ml
+mv: 'g_metacoq_erasure.ml' and 'g_metacoq_erasure.ml' are the same file
+Moving g_metacoq_erasure.mlg to g_metacoq_erasure.mlg
+mv: 'g_metacoq_erasure.mlg' and 'g_metacoq_erasure.mlg' are the same file
+Moving metacoq_erasure_plugin.mlpack to metacoq_erasure_plugin.mlpack
+mv: 'metacoq_erasure_plugin.mlpack' and 'metacoq_erasure_plugin.mlpack' are the same file
+Moving monad_utils.ml to monad_utils.ml
+mv: 'monad_utils.ml' and 'monad_utils.ml' are the same file
+Moving monad_utils.mli to monad_utils.mli
+mv: 'monad_utils.mli' and 'monad_utils.mli' are the same file
+Moving ssrbool.ml to ssrbool.ml
+mv: 'ssrbool.ml' and 'ssrbool.ml' are the same file
+Moving ssrbool.mli to ssrbool.mli
+mv: 'ssrbool.mli' and 'ssrbool.mli' are the same file
+Moving uGraph0.ml to uGraph0.ml
+mv: 'uGraph0.ml' and 'uGraph0.ml' are the same file
+Moving uGraph0.mli to uGraph0.mli
+mv: 'uGraph0.mli' and 'uGraph0.mli' are the same file
+Moving utils.ml to utils.ml
+mv: 'utils.ml' and 'utils.ml' are the same file
+Moving utils.mli to utils.mli
+mv: 'utils.mli' and 'utils.mli' are the same file
+Moving wGraph.ml to wGraph.ml
+mv: 'wGraph.ml' and 'wGraph.ml' are the same file
+Moving wGraph.mli to wGraph.mli
+mv: 'wGraph.mli' and 'wGraph.mli' are the same file
+Removing: src/all_Forall.ml src/all_Forall.mli src/ascii.ml src/ascii.mli src/ast0.ml src/ast0.mli src/ast_denoter.ml src/ast_quoter.ml src/astUtils.ml src/astUtils.mli src/basicAst.ml src/basicAst.mli src/basics.ml src/basics.mli src/binInt.ml src/binInt.mli src/binNat.ml src/binNat.mli src/binNums.ml src/binNums.mli src/binPosDef.ml src/binPosDef.mli src/binPos.ml src/binPos.mli src/bool.ml src/bool.mli src/common0.ml src/common0.mli src/compare_dec.ml src/compare_dec.mli src/config0.ml src/config0.mli src/cRelationClasses.ml src/cRelationClasses.mli src/datatypes.ml src/datatypes.mli src/decimal.ml src/decimal.mli src/denoter.ml src/environment.ml src/environment.mli src/equalities.ml src/equalities.mli src/extractable.ml src/extractable.mli src/hexadecimal.ml src/hexadecimal.mli src/liftSubst.ml src/liftSubst.mli src/list0.ml src/list0.mli src/logic0.ml src/logic0.mli src/mCPrelude.mli src/mCPrelude.ml src/mCCompare.ml src/mCCompare.mli src/mCList.ml src/mCList.mli src/mCOption.ml src/mCOption.mli src/mCProd.ml src/mCProd.mli src/mCRelations.ml src/mCRelations.mli src/mCString.ml src/mCString.mli src/mSetDecide.ml src/mSetDecide.mli src/mSetFacts.ml src/mSetFacts.mli src/mSetInterface.ml src/mSetInterface.mli src/mSetList.ml src/mSetList.mli src/mSetProperties.ml src/mSetProperties.mli src/nat0.ml src/nat0.mli src/numeral.ml src/numeral.mli src/orderedType0.ml src/orderedType0.mli src/ordersFacts.ml src/ordersFacts.mli src/ordersLists.ml src/ordersLists.mli src/orders.ml src/orders.mli src/ordersTac.ml src/ordersTac.mli src/peanoNat.ml src/peanoNat.mli src/plugin_core.ml src/plugin_core.mli src/pretty.ml src/pretty.mli src/reification.ml src/quoter.ml src/run_extractable.ml src/run_extractable.mli src/specif.ml src/specif.mli src/string0.ml src/string0.mli src/tm_util.ml src/universes0.ml src/universes0.mli src/univSubst0.ml src/univSubst0.mli
+make[4]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/erasure'
+./clean_extraction.sh
+Cleaning result of extraction
+Moving byte.ml to byte.ml
+mv: 'byte.ml' and 'byte.ml' are the same file
+Moving byte.mli to byte.mli
+mv: 'byte.mli' and 'byte.mli' are the same file
+Moving classes0.ml to classes0.ml
+mv: 'classes0.ml' and 'classes0.ml' are the same file
+Moving classes0.mli to classes0.mli
+mv: 'classes0.mli' and 'classes0.mli' are the same file
+Moving eAst.ml to eAst.ml
+mv: 'eAst.ml' and 'eAst.ml' are the same file
+Moving eAst.mli to eAst.mli
+mv: 'eAst.mli' and 'eAst.mli' are the same file
+Moving eAstUtils.ml to eAstUtils.ml
+mv: 'eAstUtils.ml' and 'eAstUtils.ml' are the same file
+Moving eAstUtils.mli to eAstUtils.mli
+mv: 'eAstUtils.mli' and 'eAstUtils.mli' are the same file
+Moving eLiftSubst.ml to eLiftSubst.ml
+mv: 'eLiftSubst.ml' and 'eLiftSubst.ml' are the same file
+Moving eLiftSubst.mli to eLiftSubst.mli
+mv: 'eLiftSubst.mli' and 'eLiftSubst.mli' are the same file
+Moving ePretty.ml to ePretty.ml
+mv: 'ePretty.ml' and 'ePretty.ml' are the same file
+Moving ePretty.mli to ePretty.mli
+mv: 'ePretty.mli' and 'ePretty.mli' are the same file
+Moving eTyping.ml to eTyping.ml
+mv: 'eTyping.ml' and 'eTyping.ml' are the same file
+Moving eTyping.mli to eTyping.mli
+mv: 'eTyping.mli' and 'eTyping.mli' are the same file
+Moving eqDecInstances.ml to eqDecInstances.ml
+mv: 'eqDecInstances.ml' and 'eqDecInstances.ml' are the same file
+Moving eqDecInstances.mli to eqDecInstances.mli
+mv: 'eqDecInstances.mli' and 'eqDecInstances.mli' are the same file
+Moving eqdepFacts.ml to eqdepFacts.ml
+mv: 'eqdepFacts.ml' and 'eqdepFacts.ml' are the same file
+Moving eqdepFacts.mli to eqdepFacts.mli
+mv: 'eqdepFacts.mli' and 'eqdepFacts.mli' are the same file
+Moving erasureFunction.ml to erasureFunction.ml
+mv: 'erasureFunction.ml' and 'erasureFunction.ml' are the same file
+Moving erasureFunction.mli to erasureFunction.mli
+mv: 'erasureFunction.mli' and 'erasureFunction.mli' are the same file
+Moving extract.ml to extract.ml
+mv: 'extract.ml' and 'extract.ml' are the same file
+Moving extract.mli to extract.mli
+mv: 'extract.mli' and 'extract.mli' are the same file
+Moving g_metacoq_erasure.ml to g_metacoq_erasure.ml
+mv: 'g_metacoq_erasure.ml' and 'g_metacoq_erasure.ml' are the same file
+Moving g_metacoq_erasure.mlg to g_metacoq_erasure.mlg
+mv: 'g_metacoq_erasure.mlg' and 'g_metacoq_erasure.mlg' are the same file
+Moving init.ml to init.ml
+mv: 'init.ml' and 'init.ml' are the same file
+Moving init.mli to init.mli
+mv: 'init.mli' and 'init.mli' are the same file
+Moving mSetWeakList.ml to mSetWeakList.ml
+mv: 'mSetWeakList.ml' and 'mSetWeakList.ml' are the same file
+Moving mSetWeakList.mli to mSetWeakList.mli
+mv: 'mSetWeakList.mli' and 'mSetWeakList.mli' are the same file
+Moving metacoq_erasure_plugin.mlpack to metacoq_erasure_plugin.mlpack
+mv: 'metacoq_erasure_plugin.mlpack' and 'metacoq_erasure_plugin.mlpack' are the same file
+Moving monad_utils.ml to monad_utils.ml
+mv: 'monad_utils.ml' and 'monad_utils.ml' are the same file
+Moving monad_utils.mli to monad_utils.mli
+mv: 'monad_utils.mli' and 'monad_utils.mli' are the same file
+Moving pCUICAst.ml to pCUICAst.ml
+mv: 'pCUICAst.ml' and 'pCUICAst.ml' are the same file
+Moving pCUICAst.mli to pCUICAst.mli
+mv: 'pCUICAst.mli' and 'pCUICAst.mli' are the same file
+Moving pCUICAstUtils.ml to pCUICAstUtils.ml
+mv: 'pCUICAstUtils.ml' and 'pCUICAstUtils.ml' are the same file
+Moving pCUICAstUtils.mli to pCUICAstUtils.mli
+mv: 'pCUICAstUtils.mli' and 'pCUICAstUtils.mli' are the same file
+Moving pCUICChecker.ml to pCUICChecker.ml
+mv: 'pCUICChecker.ml' and 'pCUICChecker.ml' are the same file
+Moving pCUICChecker.mli to pCUICChecker.mli
+mv: 'pCUICChecker.mli' and 'pCUICChecker.mli' are the same file
+Moving pCUICCumulativity.ml to pCUICCumulativity.ml
+mv: 'pCUICCumulativity.ml' and 'pCUICCumulativity.ml' are the same file
+Moving pCUICCumulativity.mli to pCUICCumulativity.mli
+mv: 'pCUICCumulativity.mli' and 'pCUICCumulativity.mli' are the same file
+Moving pCUICEquality.ml to pCUICEquality.ml
+mv: 'pCUICEquality.ml' and 'pCUICEquality.ml' are the same file
+Moving pCUICEquality.mli to pCUICEquality.mli
+mv: 'pCUICEquality.mli' and 'pCUICEquality.mli' are the same file
+Moving pCUICLiftSubst.ml to pCUICLiftSubst.ml
+mv: 'pCUICLiftSubst.ml' and 'pCUICLiftSubst.ml' are the same file
+Moving pCUICLiftSubst.mli to pCUICLiftSubst.mli
+mv: 'pCUICLiftSubst.mli' and 'pCUICLiftSubst.mli' are the same file
+Moving pCUICNormal.ml to pCUICNormal.ml
+mv: 'pCUICNormal.ml' and 'pCUICNormal.ml' are the same file
+Moving pCUICNormal.mli to pCUICNormal.mli
+mv: 'pCUICNormal.mli' and 'pCUICNormal.mli' are the same file
+Moving pCUICPosition.ml to pCUICPosition.ml
+mv: 'pCUICPosition.ml' and 'pCUICPosition.ml' are the same file
+Moving pCUICPosition.mli to pCUICPosition.mli
+mv: 'pCUICPosition.mli' and 'pCUICPosition.mli' are the same file
+Moving pCUICPretty.ml to pCUICPretty.ml
+mv: 'pCUICPretty.ml' and 'pCUICPretty.ml' are the same file
+Moving pCUICPretty.mli to pCUICPretty.mli
+mv: 'pCUICPretty.mli' and 'pCUICPretty.mli' are the same file
+Moving pCUICReflect.ml to pCUICReflect.ml
+mv: 'pCUICReflect.ml' and 'pCUICReflect.ml' are the same file
+Moving pCUICReflect.mli to pCUICReflect.mli
+mv: 'pCUICReflect.mli' and 'pCUICReflect.mli' are the same file
+Moving pCUICSafeChecker.ml to pCUICSafeChecker.ml
+mv: 'pCUICSafeChecker.ml' and 'pCUICSafeChecker.ml' are the same file
+Moving pCUICSafeChecker.mli to pCUICSafeChecker.mli
+mv: 'pCUICSafeChecker.mli' and 'pCUICSafeChecker.mli' are the same file
+Moving pCUICSafeConversion.ml to pCUICSafeConversion.ml
+mv: 'pCUICSafeConversion.ml' and 'pCUICSafeConversion.ml' are the same file
+Moving pCUICSafeConversion.mli to pCUICSafeConversion.mli
+mv: 'pCUICSafeConversion.mli' and 'pCUICSafeConversion.mli' are the same file
+Moving pCUICSafeLemmata.ml to pCUICSafeLemmata.ml
+mv: 'pCUICSafeLemmata.ml' and 'pCUICSafeLemmata.ml' are the same file
+Moving pCUICSafeLemmata.mli to pCUICSafeLemmata.mli
+mv: 'pCUICSafeLemmata.mli' and 'pCUICSafeLemmata.mli' are the same file
+Moving pCUICSafeReduce.ml to pCUICSafeReduce.ml
+mv: 'pCUICSafeReduce.ml' and 'pCUICSafeReduce.ml' are the same file
+Moving pCUICSafeReduce.mli to pCUICSafeReduce.mli
+mv: 'pCUICSafeReduce.mli' and 'pCUICSafeReduce.mli' are the same file
+Moving pCUICSafeRetyping.ml to pCUICSafeRetyping.ml
+mv: 'pCUICSafeRetyping.ml' and 'pCUICSafeRetyping.ml' are the same file
+Moving pCUICSafeRetyping.mli to pCUICSafeRetyping.mli
+mv: 'pCUICSafeRetyping.mli' and 'pCUICSafeRetyping.mli' are the same file
+Moving pCUICTyping.ml to pCUICTyping.ml
+mv: 'pCUICTyping.ml' and 'pCUICTyping.ml' are the same file
+Moving pCUICTyping.mli to pCUICTyping.mli
+mv: 'pCUICTyping.mli' and 'pCUICTyping.mli' are the same file
+Moving pCUICUnivSubst.ml to pCUICUnivSubst.ml
+mv: 'pCUICUnivSubst.ml' and 'pCUICUnivSubst.ml' are the same file
+Moving pCUICUnivSubst.mli to pCUICUnivSubst.mli
+mv: 'pCUICUnivSubst.mli' and 'pCUICUnivSubst.mli' are the same file
+Moving safeErasureFunction.ml to safeErasureFunction.ml
+mv: 'safeErasureFunction.ml' and 'safeErasureFunction.ml' are the same file
+Moving safeErasureFunction.mli to safeErasureFunction.mli
+mv: 'safeErasureFunction.mli' and 'safeErasureFunction.mli' are the same file
+Moving safeTemplateChecker.ml to safeTemplateChecker.ml
+mv: 'safeTemplateChecker.ml' and 'safeTemplateChecker.ml' are the same file
+Moving safeTemplateChecker.mli to safeTemplateChecker.mli
+mv: 'safeTemplateChecker.mli' and 'safeTemplateChecker.mli' are the same file
+Moving safeTemplateErasure.ml to safeTemplateErasure.ml
+mv: 'safeTemplateErasure.ml' and 'safeTemplateErasure.ml' are the same file
+Moving safeTemplateErasure.mli to safeTemplateErasure.mli
+mv: 'safeTemplateErasure.mli' and 'safeTemplateErasure.mli' are the same file
+Moving ssrbool.ml to ssrbool.ml
+mv: 'ssrbool.ml' and 'ssrbool.ml' are the same file
+Moving ssrbool.mli to ssrbool.mli
+mv: 'ssrbool.mli' and 'ssrbool.mli' are the same file
+Moving templateToPCUIC.ml to templateToPCUIC.ml
+mv: 'templateToPCUIC.ml' and 'templateToPCUIC.ml' are the same file
+Moving templateToPCUIC.mli to templateToPCUIC.mli
+mv: 'templateToPCUIC.mli' and 'templateToPCUIC.mli' are the same file
+Moving typing0.ml to typing0.ml
+mv: 'typing0.ml' and 'typing0.ml' are the same file
+Moving typing0.mli to typing0.mli
+mv: 'typing0.mli' and 'typing0.mli' are the same file
+Moving uGraph0.ml to uGraph0.ml
+mv: 'uGraph0.ml' and 'uGraph0.ml' are the same file
+Moving uGraph0.mli to uGraph0.mli
+mv: 'uGraph0.mli' and 'uGraph0.mli' are the same file
+Moving utils.ml to utils.ml
+mv: 'utils.ml' and 'utils.ml' are the same file
+Moving utils.mli to utils.mli
+mv: 'utils.mli' and 'utils.mli' are the same file
+Moving wGraph.ml to wGraph.ml
+mv: 'wGraph.ml' and 'wGraph.ml' are the same file
+Moving wGraph.mli to wGraph.mli
+mv: 'wGraph.mli' and 'wGraph.mli' are the same file
+Removing: src/all_Forall.ml src/all_Forall.mli src/ascii.ml src/ascii.mli src/ast0.ml src/ast0.mli src/ast_denoter.ml src/ast_quoter.ml src/astUtils.ml src/astUtils.mli src/basicAst.ml src/basicAst.mli src/basics.ml src/basics.mli src/binInt.ml src/binInt.mli src/binNat.ml src/binNat.mli src/binNums.ml src/binNums.mli src/binPosDef.ml src/binPosDef.mli src/binPos.ml src/binPos.mli src/bool.ml src/bool.mli src/common0.ml src/common0.mli src/compare_dec.ml src/compare_dec.mli src/config0.ml src/config0.mli src/cRelationClasses.ml src/cRelationClasses.mli src/datatypes.ml src/datatypes.mli src/decimal.ml src/decimal.mli src/denoter.ml src/environment.ml src/environment.mli src/equalities.ml src/equalities.mli src/extractable.ml src/extractable.mli src/hexadecimal.ml src/hexadecimal.mli src/liftSubst.ml src/liftSubst.mli src/list0.ml src/list0.mli src/logic0.ml src/logic0.mli src/mCPrelude.mli src/mCPrelude.ml src/mCCompare.ml src/mCCompare.mli src/mCList.ml src/mCList.mli src/mCOption.ml src/mCOption.mli src/mCProd.ml src/mCProd.mli src/mCRelations.ml src/mCRelations.mli src/mCString.ml src/mCString.mli src/mSetDecide.ml src/mSetDecide.mli src/mSetFacts.ml src/mSetFacts.mli src/mSetInterface.ml src/mSetInterface.mli src/mSetList.ml src/mSetList.mli src/mSetProperties.ml src/mSetProperties.mli src/nat0.ml src/nat0.mli src/numeral.ml src/numeral.mli src/orderedType0.ml src/orderedType0.mli src/ordersFacts.ml src/ordersFacts.mli src/ordersLists.ml src/ordersLists.mli src/orders.ml src/orders.mli src/ordersTac.ml src/ordersTac.mli src/peanoNat.ml src/peanoNat.mli src/plugin_core.ml src/plugin_core.mli src/pretty.ml src/pretty.mli src/reification.ml src/quoter.ml src/run_extractable.ml src/run_extractable.mli src/specif.ml src/specif.mli src/string0.ml src/string0.mli src/tm_util.ml src/universes0.ml src/universes0.mli src/univSubst0.ml src/univSubst0.mli
+make -f Makefile.plugin
+make[4]: Entering directory '/builds/coq/coq/_build_ci/metacoq/erasure'
+COQDEP VFILES
+CAMLDEP src/safeTemplateErasure.mli
+CAMLDEP src/ePretty.mli
+CAMLDEP src/safeErasureFunction.mli
+CAMLDEP src/extract.mli
+CAMLDEP src/erasureFunction.mli
+CAMLDEP src/eTyping.mli
+CAMLDEP src/eLiftSubst.mli
+CAMLDEP src/eAstUtils.mli
+CAMLDEP src/eAst.mli
+CAMLDEP src/safeTemplateChecker.mli
+CAMLDEP src/pCUICSafeRetyping.mli
+CAMLDEP src/pCUICSafeChecker.mli
+CAMLDEP src/pCUICSafeConversion.mli
+CAMLDEP src/pCUICSafeReduce.mli
+CAMLDEP src/templateToPCUIC.mli
+CAMLDEP src/pCUICSafeLemmata.mli
+CAMLDEP src/pCUICPretty.mli
+CAMLDEP src/pCUICChecker.mli
+CAMLDEP src/pCUICNormal.mli
+CAMLDEP src/pCUICPosition.mli
+CAMLDEP src/pCUICCumulativity.mli
+CAMLDEP src/pCUICUnivSubst.mli
+CAMLDEP src/pCUICTyping.mli
+CAMLDEP src/pCUICReflect.mli
+CAMLDEP src/pCUICEquality.mli
+CAMLDEP src/eqDecInstances.mli
+CAMLDEP src/pCUICLiftSubst.mli
+CAMLDEP src/pCUICAstUtils.mli
+CAMLDEP src/pCUICAst.mli
+CAMLDEP src/typing0.mli
+CAMLDEP src/wGraph.mli
+CAMLDEP src/uGraph0.mli
+CAMLDEP src/monad_utils.mli
+CAMLDEP src/utils.mli
+CAMLDEP src/ssrbool.mli
+CAMLDEP src/eqdepFacts.mli
+CAMLDEP src/mSetWeakList.mli
+CAMLDEP src/classes0.mli
+CAMLDEP src/init.mli
+OCAMLLIBDEP src/metacoq_erasure_plugin.mlpack
+CAMLDEP src/safeTemplateErasure.ml
+CAMLDEP src/ePretty.ml
+CAMLDEP src/safeErasureFunction.ml
+CAMLDEP src/erasureFunction.ml
+CAMLDEP src/extract.ml
+CAMLDEP src/eTyping.ml
+CAMLDEP src/eLiftSubst.ml
+CAMLDEP src/eAstUtils.ml
+CAMLDEP src/eAst.ml
+CAMLDEP src/safeTemplateChecker.ml
+CAMLDEP src/pCUICSafeRetyping.ml
+CAMLDEP src/pCUICSafeChecker.ml
+CAMLDEP src/pCUICSafeConversion.ml
+CAMLDEP src/pCUICSafeReduce.ml
+CAMLDEP src/templateToPCUIC.ml
+CAMLDEP src/pCUICSafeLemmata.ml
+CAMLDEP src/pCUICPretty.ml
+CAMLDEP src/pCUICChecker.ml
+CAMLDEP src/pCUICNormal.ml
+CAMLDEP src/pCUICPosition.ml
+CAMLDEP src/pCUICCumulativity.ml
+CAMLDEP src/pCUICUnivSubst.ml
+CAMLDEP src/pCUICTyping.ml
+CAMLDEP src/pCUICEquality.ml
+CAMLDEP src/pCUICReflect.ml
+CAMLDEP src/eqDecInstances.ml
+CAMLDEP src/pCUICLiftSubst.ml
+CAMLDEP src/pCUICAstUtils.ml
+CAMLDEP src/pCUICAst.ml
+CAMLDEP src/typing0.ml
+CAMLDEP src/wGraph.ml
+CAMLDEP src/uGraph0.ml
+CAMLDEP src/monad_utils.ml
+CAMLDEP src/utils.ml
+CAMLDEP src/ssrbool.ml
+CAMLDEP src/eqdepFacts.ml
+CAMLDEP src/mSetWeakList.ml
+CAMLDEP src/classes0.ml
+CAMLDEP src/init.ml
+CAMLDEP src/g_metacoq_erasure.ml
+CAMLC -c src/mSetWeakList.mli
+CAMLC -c src/monad_utils.mli
+src/monad_utils.cmi (real: 0.04, user: 0.03, sys: 0.01, mem: 19272 ko)
+CAMLC -c src/eqdepFacts.mli
+src/mSetWeakList.cmi (real: 0.06, user: 0.04, sys: 0.01, mem: 20108 ko)
+CAMLC -c src/ssrbool.mli
+src/eqdepFacts.cmi (real: 0.04, user: 0.03, sys: 0.01, mem: 19396 ko)
+CAMLC -c src/utils.mli
+src/ssrbool.cmi (real: 0.04, user: 0.02, sys: 0.01, mem: 19220 ko)
+CAMLC -c src/typing0.mli
+src/typing0.cmi (real: 0.04, user: 0.03, sys: 0.01, mem: 20300 ko)
+CAMLC -c src/init.mli
+src/utils.cmi (real: 0.05, user: 0.04, sys: 0.01, mem: 19228 ko)
+CAMLC -c src/classes0.mli
+src/init.cmi (real: 0.04, user: 0.03, sys: 0.01, mem: 19324 ko)
+CAMLC -c src/pCUICAst.mli
+src/classes0.cmi (real: 0.05, user: 0.03, sys: 0.01, mem: 19340 ko)
+CAMLC -c src/pCUICNormal.mli
+src/pCUICNormal.cmi (real: 0.03, user: 0.02, sys: 0.01, mem: 19304 ko)
+CAMLC -c src/pCUICCumulativity.mli
+src/pCUICAst.cmi (real: 0.06, user: 0.04, sys: 0.01, mem: 21244 ko)
+CAMLC -c src/safeTemplateChecker.mli
+src/pCUICCumulativity.cmi (real: 0.03, user: 0.02, sys: 0.01, mem: 19224 ko)
+CAMLC -c src/eAst.mli
+src/safeTemplateChecker.cmi (real: 0.05, user: 0.04, sys: 0.01, mem: 20348 ko)
+CAMLOPT -c -for-pack Metacoq_erasure_plugin src/monad_utils.ml
+src/eAst.cmi (real: 0.05, user: 0.03, sys: 0.01, mem: 20908 ko)
+CAMLOPT -c -for-pack Metacoq_erasure_plugin src/mSetWeakList.ml
+src/monad_utils.cmx (real: 0.07, user: 0.04, sys: 0.02, mem: 22452 ko)
+CAMLOPT -c -for-pack Metacoq_erasure_plugin src/eqdepFacts.ml
+src/mSetWeakList.cmx (real: 0.08, user: 0.06, sys: 0.01, mem: 25216 ko)
+CAMLOPT -c -for-pack Metacoq_erasure_plugin src/ssrbool.ml
+src/eqdepFacts.cmx (real: 0.05, user: 0.03, sys: 0.01, mem: 22072 ko)
+CAMLOPT -c -for-pack Metacoq_erasure_plugin src/utils.ml
+src/ssrbool.cmx (real: 0.05, user: 0.02, sys: 0.02, mem: 21912 ko)
+CAMLC -c src/wGraph.mli
+src/utils.cmx (real: 0.06, user: 0.04, sys: 0.02, mem: 22212 ko)
+CAMLOPT -c -for-pack Metacoq_erasure_plugin src/typing0.ml
+src/wGraph.cmi (real: 0.06, user: 0.05, sys: 0.00, mem: 22824 ko)
+CAMLOPT -c -for-pack Metacoq_erasure_plugin src/init.ml
+src/typing0.cmx (real: 0.07, user: 0.05, sys: 0.01, mem: 24076 ko)
+CAMLOPT -c -for-pack Metacoq_erasure_plugin src/classes0.ml
+src/init.cmx (real: 0.05, user: 0.03, sys: 0.02, mem: 22188 ko)
+CAMLOPT -c -for-pack Metacoq_erasure_plugin src/pCUICAst.ml
+src/classes0.cmx (real: 0.05, user: 0.02, sys: 0.02, mem: 21960 ko)
+CAMLC -c src/pCUICAstUtils.mli
+src/pCUICAst.cmx (real: 0.07, user: 0.05, sys: 0.01, mem: 26032 ko)
+CAMLC -c src/pCUICUnivSubst.mli
+src/pCUICAstUtils.cmi (real: 0.06, user: 0.04, sys: 0.01, mem: 20412 ko)
+CAMLC -c src/pCUICLiftSubst.mli
+src/pCUICUnivSubst.cmi (real: 0.04, user: 0.03, sys: 0.01, mem: 20308 ko)
+CAMLC -c src/eqDecInstances.mli
+src/pCUICLiftSubst.cmi (real: 0.05, user: 0.03, sys: 0.01, mem: 20444 ko)
+CAMLC -c src/pCUICReflect.mli
+src/eqDecInstances.cmi (real: 0.04, user: 0.03, sys: 0.01, mem: 19268 ko)
+CAMLOPT -c -for-pack Metacoq_erasure_plugin src/pCUICNormal.ml
+src/pCUICReflect.cmi (real: 0.04, user: 0.03, sys: 0.01, mem: 20240 ko)
+CAMLC -c src/pCUICPosition.mli
+src/pCUICNormal.cmx (real: 0.05, user: 0.03, sys: 0.02, mem: 22044 ko)
+CAMLC -c src/templateToPCUIC.mli
+src/pCUICPosition.cmi (real: 0.04, user: 0.03, sys: 0.01, mem: 20488 ko)
+CAMLC -c src/pCUICSafeLemmata.mli
+src/pCUICSafeLemmata.cmi (real: 0.04, user: 0.03, sys: 0.00, mem: 19348 ko)
+CAMLOPT -c -for-pack Metacoq_erasure_plugin src/pCUICCumulativity.ml
+src/templateToPCUIC.cmi (real: 0.06, user: 0.05, sys: 0.01, mem: 21328 ko)
+CAMLOPT -c -for-pack Metacoq_erasure_plugin src/safeTemplateChecker.ml
+src/pCUICCumulativity.cmx (real: 0.04, user: 0.02, sys: 0.02, mem: 21940 ko)
+CAMLOPT -c -for-pack Metacoq_erasure_plugin src/eAst.ml
+src/safeTemplateChecker.cmx (real: 0.08, user: 0.06, sys: 0.02, mem: 25408 ko)
+CAMLC -c src/eAstUtils.mli
+src/eAstUtils.cmi (real: 0.04, user: 0.03, sys: 0.01, mem: 19496 ko)
+CAMLC -c src/eLiftSubst.mli
+src/eAst.cmx (real: 0.12, user: 0.10, sys: 0.02, mem: 28644 ko)
+CAMLC -c src/extract.mli
+src/eLiftSubst.cmi (real: 0.04, user: 0.02, sys: 0.01, mem: 19300 ko)
+CAMLOPT -c -for-pack Metacoq_erasure_plugin src/wGraph.ml
+src/extract.cmi (real: 0.05, user: 0.03, sys: 0.01, mem: 21060 ko)
+CAMLC -c src/uGraph0.mli
+src/uGraph0.cmi (real: 0.08, user: 0.06, sys: 0.01, mem: 24780 ko)
+CAMLOPT -c -for-pack Metacoq_erasure_plugin src/pCUICAstUtils.ml
+src/wGraph.cmx (real: 0.17, user: 0.14, sys: 0.02, mem: 31636 ko)
+CAMLOPT -c -for-pack Metacoq_erasure_plugin src/pCUICUnivSubst.ml
+src/pCUICAstUtils.cmx (real: 0.11, user: 0.08, sys: 0.02, mem: 26392 ko)
+CAMLOPT -c -for-pack Metacoq_erasure_plugin src/pCUICLiftSubst.ml
+src/pCUICUnivSubst.cmx (real: 0.08, user: 0.05, sys: 0.02, mem: 25180 ko)
+CAMLOPT -c -for-pack Metacoq_erasure_plugin src/eqDecInstances.ml
+src/eqDecInstances.cmx (real: 0.06, user: 0.03, sys: 0.02, mem: 22196 ko)
+CAMLOPT -c -for-pack Metacoq_erasure_plugin src/pCUICReflect.ml
+src/pCUICLiftSubst.cmx (real: 0.09, user: 0.06, sys: 0.02, mem: 26244 ko)
+CAMLC -c src/pCUICEquality.mli
+src/pCUICEquality.cmi (real: 0.05, user: 0.03, sys: 0.01, mem: 20372 ko)
+CAMLC -c src/pCUICTyping.mli
+src/pCUICReflect.cmx (real: 0.07, user: 0.05, sys: 0.02, mem: 24336 ko)
+CAMLOPT -c -for-pack Metacoq_erasure_plugin src/pCUICPosition.ml
+src/pCUICTyping.cmi (real: 0.05, user: 0.04, sys: 0.01, mem: 21400 ko)
+CAMLOPT -c -for-pack Metacoq_erasure_plugin src/templateToPCUIC.ml
+src/pCUICPosition.cmx (real: 0.08, user: 0.06, sys: 0.01, mem: 26048 ko)
+CAMLOPT -c -for-pack Metacoq_erasure_plugin src/pCUICSafeLemmata.ml
+src/templateToPCUIC.cmx (real: 0.08, user: 0.06, sys: 0.02, mem: 26384 ko)
+src/pCUICSafeLemmata.cmx (real: 0.05, user: 0.02, sys: 0.02, mem: 22084 ko)
+CAMLC -c src/pCUICSafeReduce.mli
+CAMLOPT -c -for-pack Metacoq_erasure_plugin src/eAstUtils.ml
+src/pCUICSafeReduce.cmi (real: 0.06, user: 0.05, sys: 0.01, mem: 21556 ko)
+CAMLOPT -c -for-pack Metacoq_erasure_plugin src/eLiftSubst.ml
+src/eAstUtils.cmx (real: 0.08, user: 0.05, sys: 0.02, mem: 24800 ko)
+CAMLC -c src/eTyping.mli
+src/eTyping.cmi (real: 0.04, user: 0.03, sys: 0.00, mem: 20252 ko)
+CAMLOPT -c -for-pack Metacoq_erasure_plugin src/extract.ml
+src/eLiftSubst.cmx (real: 0.07, user: 0.05, sys: 0.02, mem: 25192 ko)
+CAMLOPT -c -for-pack Metacoq_erasure_plugin src/uGraph0.ml
+src/extract.cmx (real: 0.07, user: 0.04, sys: 0.02, mem: 23032 ko)
+CAMLOPT -c -for-pack Metacoq_erasure_plugin src/pCUICEquality.ml
+src/uGraph0.cmx (real: 0.13, user: 0.11, sys: 0.02, mem: 30984 ko)
+CAMLOPT -c -for-pack Metacoq_erasure_plugin src/pCUICTyping.ml
+src/pCUICEquality.cmx (real: 0.09, user: 0.06, sys: 0.02, mem: 26256 ko)
+CAMLC -c src/pCUICChecker.mli
+src/pCUICChecker.cmi (real: 0.06, user: 0.04, sys: 0.01, mem: 21236 ko)
+CAMLC -c src/pCUICSafeConversion.mli
+src/pCUICTyping.cmx (real: 0.11, user: 0.08, sys: 0.03, mem: 27752 ko)
+CAMLOPT -c -for-pack Metacoq_erasure_plugin src/eTyping.ml
+src/pCUICSafeConversion.cmi (real: 0.08, user: 0.06, sys: 0.02, mem: 23232 ko)
+CAMLC -c src/ePretty.mli
+src/eTyping.cmx (real: 0.08, user: 0.06, sys: 0.02, mem: 24684 ko)
+CAMLOPT -c -for-pack Metacoq_erasure_plugin src/pCUICChecker.ml
+src/ePretty.cmi (real: 0.06, user: 0.04, sys: 0.01, mem: 20540 ko)
+CAMLC -c src/pCUICPretty.mli
+src/pCUICPretty.cmi (real: 0.05, user: 0.04, sys: 0.01, mem: 20560 ko)
+CAMLOPT -c -for-pack Metacoq_erasure_plugin src/pCUICSafeReduce.ml
+src/pCUICChecker.cmx (real: 0.07, user: 0.05, sys: 0.02, mem: 25140 ko)
+CAMLC -c src/pCUICSafeChecker.mli
+src/pCUICSafeChecker.cmi (real: 0.07, user: 0.05, sys: 0.01, mem: 24300 ko)
+CAMLOPT -c -for-pack Metacoq_erasure_plugin src/ePretty.ml
+src/pCUICSafeReduce.cmx (real: 0.09, user: 0.07, sys: 0.02, mem: 27792 ko)
+CAMLC -c src/erasureFunction.mli
+src/erasureFunction.cmi (real: 0.08, user: 0.06, sys: 0.01, mem: 22652 ko)
+CAMLOPT -c -for-pack Metacoq_erasure_plugin src/pCUICPretty.ml
+src/ePretty.cmx (real: 0.11, user: 0.09, sys: 0.02, mem: 26992 ko)
+CAMLOPT -c -for-pack Metacoq_erasure_plugin src/pCUICSafeConversion.ml
+src/pCUICPretty.cmx (real: 0.11, user: 0.09, sys: 0.02, mem: 29148 ko)
+CAMLC -c src/pCUICSafeRetyping.mli
+src/pCUICSafeRetyping.cmi (real: 0.05, user: 0.03, sys: 0.01, mem: 21604 ko)
+CAMLC -c src/safeErasureFunction.mli
+src/safeErasureFunction.cmi (real: 0.07, user: 0.05, sys: 0.01, mem: 21660 ko)
+CAMLC -c src/safeTemplateErasure.mli
+src/safeTemplateErasure.cmi (real: 0.07, user: 0.05, sys: 0.01, mem: 23148 ko)
+src/pCUICSafeConversion.cmx (real: 0.31, user: 0.27, sys: 0.03, mem: 43056 ko)
+CAMLOPT -c -for-pack Metacoq_erasure_plugin src/pCUICSafeChecker.ml
+src/pCUICSafeChecker.cmx (real: 0.37, user: 0.33, sys: 0.03, mem: 45284 ko)
+CAMLOPT -c -for-pack Metacoq_erasure_plugin src/pCUICSafeRetyping.ml
+CAMLOPT -c -for-pack Metacoq_erasure_plugin src/erasureFunction.ml
+src/pCUICSafeRetyping.cmx (real: 0.09, user: 0.06, sys: 0.02, mem: 27380 ko)
+CAMLOPT -c -for-pack Metacoq_erasure_plugin src/safeErasureFunction.ml
+src/erasureFunction.cmx (real: 0.14, user: 0.11, sys: 0.02, mem: 31208 ko)
+src/safeErasureFunction.cmx (real: 0.12, user: 0.09, sys: 0.01, mem: 29852 ko)
+CAMLOPT -c -for-pack Metacoq_erasure_plugin src/safeTemplateErasure.ml
+src/safeTemplateErasure.cmx (real: 0.09, user: 0.07, sys: 0.02, mem: 30244 ko)
+CAMLOPT -c -for-pack Metacoq_erasure_plugin src/g_metacoq_erasure.ml
+src/g_metacoq_erasure.cmx (real: 0.09, user: 0.06, sys: 0.02, mem: 30052 ko)
+CAMLOPT -pack -o src/metacoq_erasure_plugin.cmx
+src/metacoq_erasure_plugin.cmx (real: 0.12, user: 0.08, sys: 0.03, mem: 32668 ko)
+CAMLOPT -a -o src/metacoq_erasure_plugin.cmxa
+src/metacoq_erasure_plugin.cmxa (real: 0.02, user: 0.00, sys: 0.01, mem: 13520 ko)
+CAMLOPT -shared -o src/metacoq_erasure_plugin.cmxs
+src/metacoq_erasure_plugin.cmxs (real: 0.17, user: 0.13, sys: 0.03, mem: 20232 ko)
+COQC theories/Loader.v
+theories/Loader.vo (real: 0.41, user: 0.30, sys: 0.11, mem: 237756 ko)
+make[4]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/erasure'
+make[3]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/erasure'
+make -C test-suite
+make[3]: Entering directory '/builds/coq/coq/_build_ci/metacoq/test-suite'
+coq_makefile -f _CoqProject -o Makefile.coq
+make -C plugin-demo
+make[4]: Entering directory '/builds/coq/coq/_build_ci/metacoq/test-suite/plugin-demo'
+coq_makefile -f _CoqProject -o Makefile.coq
+Warning: ../template-coq/theories (used in -R or -Q) is not a subdirectory of the current directory
+
+make -f Makefile.coq pretty-timed
+make[4]: Entering directory '/builds/coq/coq/_build_ci/metacoq/test-suite'
+Warning: ../../template-coq/theories (used in -R or -Q) is not a subdirectory of the current directory
+
+make -f Makefile.coq
+make[5]: Entering directory '/builds/coq/coq/_build_ci/metacoq/test-suite/plugin-demo'
+COQDEP VFILES
+COQDEP VFILES
+*** Warning: in file theories/MyPlugin.v,
+ required library Loader matches several files in path
+ (found Loader.v in ../../template-coq/theories and theories; used the latter)
+COQC theories/Lens.v
+theories/Lens.vo (real: 0.10, user: 0.05, sys: 0.04, mem: 64048 ko)
+COQC theories/MyPlugin.v
+COQC bug1.v
+File "./theories/MyPlugin.v", line 10, characters 0-24:
+Warning: Interpreting this declaration as if a global declaration prefixed by
+"Local", i.e. as a global declaration which shall not be available without
+qualification when imported. [local-declaration,scope]
+theories/MyPlugin.vo (real: 1.20, user: 0.91, sys: 0.28, mem: 513348 ko)
+COQC theories/Extraction.v
+bug1.vo (real: 1.30, user: 1.03, sys: 0.26, mem: 510284 ko)
+COQC bug2.v
+bug2.vo (real: 1.09, user: 0.81, sys: 0.26, mem: 500380 ko)
+COQC bug5.v
+File "./theories/Extraction.v", line 7, characters 0-28:
+Warning: The extraction is currently set to bypass opacity, the following
+opaque constant bodies have been accessed
+: All_Forall.All2_firstn All_Forall.All2_All_mix_right
+ CRelationClasses.PartialOrder_inverse All_Forall.All_All2_All2_mix
+ fold_rec_bis cardinal_inv_2b All_Forall.All_rev All_Forall.All_mix
+ All_Forall.All_map All_Forall.All_app
+ All_Forall.OnOne2_impl_exist_and_All_r Universes.fresh_universe
+ All_Forall.Alli_rev All_Forall.Alli_mix All_Forall.Alli_app
+ All_Forall.Alli_All All_Forall.All_prod All_Forall.All_mapi
+ All_Forall.All_impl All_Forall.All_Alli All_Forall.All_All2
+ List.Forall_rect All_Forall.All2_sym All_Forall.All2_rev
+ All_Forall.All2_nth All_Forall.All2_mix All_Forall.All2_map
+ All_Forall.All2_app All_Forall.All2_All fold_rec_nodep
+ Universes.Level.eqb_spec All_Forall.Alli_shiftn_inv Universes.fresh_level
+ All_Forall.All2_All_mix_left All_Forall.All2_nth_error_Some_r
+ All_Forall.Alli_nth_error All_Forall.forall_nth_error_All
+ All_Forall.forall_nth_error_Alli All_Forall.All2_nth_error
+ All_Forall.nth_error_all All_Forall.All2_prod_inv All_Forall.Alli_mapi
+ List.nth_in_or_default All_Forall.forallb_nth'
+ CRelationClasses.partial_order_antisym All_Forall.All_skipn
+ CRelationClasses.flip_PreOrder All_Forall.Alli_shiftn All_Forall.Forall_All
+ CRelationClasses.relation_implication_preorder
+ All_Forall.OnOne2_impl_exist_and_All All_Forall.All2i_rev
+ All_Forall.All2i_app All_Forall.All2_symP All_Forall.All2_swap
+ All_Forall.All2_same All_Forall.All2_mapi All_Forall.All2_impl
+ All_Forall.All2_app_inv String.eqb_spec All_Forall.OnOne2_All_mix_left
+ List.exists_last All_Forall.All2i_mapi All_Forall.All2i_impl
+ All_Forall.All_nth_error All_Forall.All_repeat All_Forall.Alli_app_inv
+ All_Forall.All2_trans All_Forall.All2_skipn All_Forall.All2_right
+ All_Forall.All2_eq_eq All_Forall.All2_app_r All_Forall.All_firstn
+ All_Forall.All2_All_right All_Forall.All2_map_left MCOption.option_map_Some
+ CRelationClasses.flip_Reflexive All_Forall.All2_map_right
+ All_Forall.All2_map_left' All_Forall.forallb2_All2 All_Forall.All_app_inv
+ MCList.rev_case CRelationClasses.flip_StrictOrder MCList.nth_error_spec
+ List.destruct_list CRelationClasses.relation_equivalence_equivalence
+ All_Forall.OnOne2_split All_Forall.OnOne2_ind_l All_Forall.OnOne2_exist
+ cardinal_inv_2 All_Forall.All2_All_left All_Forall.OnOne2_mapP
+ All_Forall.OnOne2_impl All_Forall.nth_error_alli
+ Universes.ConstraintType.eq_dec MCList.rev_list_ind In_dec Ascii.eqb_spec
+ All_Forall.All_prod_inv set_induction_min set_induction_max
+ MCCompare.string_Compare All_Forall.All2_nth_error_Some_right
+ MCList.nth_error_Some' All_Forall.map_option_out_All All_Forall.All_rev_map
+ All_Forall.All_rev_inv All_Forall.All_All2_refl
+ CRelationClasses.flip_Antisymmetric All_Forall.All2_app_inv_r fold_rel
+ fold_rec MCCompare.ascii_Compare CRelationClasses.flip_PER
+ All_Forall.Alli_All_mix set_induction All_Forall.All2_mix_inv
+ CRelationClasses.flip_Equivalence All_Forall.forallb_All
+ All_Forall.All2_map_inv MCList.rev_ind All_Forall.All2_right_triv
+ set_induction_bis MCList.list_rect_rev fold_rec_weak BasicAst.ident_eq_spec
+ All_Forall.OnOne2_sym All_Forall.OnOne2_map All_Forall.OnOne2_app
+ All_Forall.All2_from_nth_error All_Forall.map_eq_inj
+ All_Forall.Alli_rev_nth_error All_Forall.All2_map_right'
+ All_Forall.All2_nth_error_Some All_Forall.OnOne2_nth_error
+ All_Forall.All2_All_left_pack All_Forall.All_safe_nth
+ CRelationClasses.subrelation_symmetric MCOption.nth_map_option_out
+ All_Forall.All_map_inv All_Forall.Alli_shift All_Forall.All2_impl_In.
+ [extraction-opaque-accessed,extraction]
+bug5.vo (real: 1.92, user: 1.62, sys: 0.29, mem: 512080 ko)
+COQC bug6.v
+File "./theories/Extraction.v", line 7, characters 0-28:
+Warning: The identifier __top_assumption_ contains __ which is reserved for
+the extraction [extraction-reserved-identifier,extraction]
+File "./theories/Extraction.v", line 7, characters 0-28:
+Warning: The identifier __top_assumption_ contains __ which is reserved for
+the extraction [extraction-reserved-identifier,extraction]
+File "./theories/Extraction.v", line 7, characters 0-28:
+Warning: The identifier t__rect contains __ which is reserved for the
+extraction [extraction-reserved-identifier,extraction]
+File "./theories/Extraction.v", line 7, characters 0-28:
+Warning: The identifier t__rec contains __ which is reserved for the
+extraction [extraction-reserved-identifier,extraction]
+File "./theories/Extraction.v", line 7, characters 0-28:
+Warning: The identifier t__rect contains __ which is reserved for the
+extraction [extraction-reserved-identifier,extraction]
+File "./theories/Extraction.v", line 7, characters 0-28:
+Warning: The identifier t__rec contains __ which is reserved for the
+extraction [extraction-reserved-identifier,extraction]
+File "./theories/Extraction.v", line 7, characters 0-28:
+Warning: The identifier t__rect contains __ which is reserved for the
+extraction [extraction-reserved-identifier,extraction]
+File "./theories/Extraction.v", line 7, characters 0-28:
+Warning: The identifier t__rec contains __ which is reserved for the
+extraction [extraction-reserved-identifier,extraction]
+File "./theories/Extraction.v", line 7, characters 0-28:
+Warning: The identifier t__rect contains __ which is reserved for the
+extraction [extraction-reserved-identifier,extraction]
+File "./theories/Extraction.v", line 7, characters 0-28:
+Warning: The identifier t__rec contains __ which is reserved for the
+extraction [extraction-reserved-identifier,extraction]
+theories/Extraction.vo (real: 3.67, user: 3.11, sys: 0.54, mem: 561316 ko)
+make[5]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/test-suite/plugin-demo'
+cd gen-src && ./to-lower.sh
+Moving Lens.ml to lens.ml
+Moving Lens.mli to lens.mli
+Moving MyPlugin.ml to myPlugin.ml
+Moving MyPlugin.mli to myPlugin.mli
+make -f Makefile.plugin
+make[5]: Entering directory '/builds/coq/coq/_build_ci/metacoq/test-suite/plugin-demo'
+Makefile.plugin:20: Makefile.plugin.conf: No such file or directory
+COQDEP VFILES
+*** Warning: in file test/test.v,
+ required library Loader matches several files in path
+ (found Loader.v in ../../template-coq/theories and theories; used the latter)
+coq_makefile -f _PluginProject -o Makefile.plugin
+Warning: ../../template-coq/theories (used in -R or -Q) is not a subdirectory of the current directory
+
+COQPP src/g_demo_plugin.mlg
+CAMLDEP gen-src/lens.mli
+CAMLDEP gen-src/myPlugin.mli
+OCAMLLIBDEP src/demo_plugin.mlpack
+CAMLDEP gen-src/lens.ml
+CAMLDEP gen-src/myPlugin.ml
+CAMLDEP src/g_demo_plugin.ml
+CAMLC -c gen-src/lens.mli
+gen-src/lens.cmi (real: 0.04, user: 0.03, sys: 0.01, mem: 19172 ko)
+CAMLC -c gen-src/myPlugin.mli
+gen-src/myPlugin.cmi (real: 0.05, user: 0.04, sys: 0.01, mem: 20208 ko)
+CAMLOPT -c -for-pack Demo_plugin gen-src/lens.ml
+gen-src/lens.cmx (real: 0.07, user: 0.04, sys: 0.02, mem: 22124 ko)
+CAMLOPT -c -for-pack Demo_plugin gen-src/myPlugin.ml
+bug6.vo (real: 1.11, user: 0.85, sys: 0.25, mem: 500408 ko)
+COQC bug7.v
+gen-src/myPlugin.cmx (real: 0.12, user: 0.10, sys: 0.02, mem: 27228 ko)
+CAMLOPT -c -for-pack Demo_plugin src/g_demo_plugin.ml
+src/g_demo_plugin.cmx (real: 0.09, user: 0.06, sys: 0.02, mem: 27844 ko)
+CAMLOPT -pack -o src/demo_plugin.cmx
+src/demo_plugin.cmx (real: 0.06, user: 0.04, sys: 0.02, mem: 21964 ko)
+CAMLOPT -a -o src/demo_plugin.cmxa
+src/demo_plugin.cmxa (real: 0.02, user: 0.00, sys: 0.01, mem: 13200 ko)
+CAMLOPT -shared -o src/demo_plugin.cmxs
+src/demo_plugin.cmxs (real: 0.04, user: 0.01, sys: 0.02, mem: 14256 ko)
+COQC theories/Loader.v
+theories/Loader.vo (real: 0.10, user: 0.05, sys: 0.04, mem: 62308 ko)
+COQC test/test.v
+bug7.vo (real: 1.21, user: 0.89, sys: 0.31, mem: 500252 ko)
+COQC bug8.v
+Notation plus := Nat.add
+Expands to: Notation Coq.Init.Peano.plus
+(1 + 2)
+File "./test/test.v", line 19, characters 0-16:
+Warning: SSReflect's Search command has been moved to the ssrsearch module;
+please Require that module if you still want to use SSReflect's Search
+command [ssr-search-moved,deprecated]
+x: Point -> nat
+y: Point -> nat
+Build_Point: nat -> nat -> Point
+_y: Lens Point Point nat nat
+_x: Lens Point Point nat nat
+test/test.vo (real: 1.51, user: 1.21, sys: 0.29, mem: 513888 ko)
+make[5]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/test-suite/plugin-demo'
+make[4]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/test-suite/plugin-demo'
+COQC bugkncst.v
+bug8.vo (real: 1.10, user: 0.84, sys: 0.25, mem: 500436 ko)
+COQC case.v
+File "./bugkncst.v", line 12, characters 21-36:
+Warning: omega is deprecated since 8.12; use “lia” instead.
+[omega-is-deprecated,deprecated]
+case.vo (real: 1.12, user: 0.88, sys: 0.23, mem: 500120 ko)
+COQC castprop.v
+castprop.vo (real: 1.23, user: 0.94, sys: 0.28, mem: 510368 ko)
+COQC cofix.v
+cofix.vo (real: 1.11, user: 0.81, sys: 0.29, mem: 500192 ko)
+COQC erasure_live_test.v
+bugkncst.vo (real: 57.89, user: 56.51, sys: 1.14, mem: 896928 ko)
+COQC vs.v
+File "./vs.v", line 91, characters 0-145:
+Warning: omega is deprecated since 8.12; use “lia” instead.
+[omega-is-deprecated,deprecated]
+File "./vs.v", line 1065, characters 1-7:
+Warning: omega is deprecated since 8.12; use “lia” instead.
+[omega-is-deprecated,deprecated]
+File "./vs.v", line 1066, characters 1-7:
+Warning: omega is deprecated since 8.12; use “lia” instead.
+[omega-is-deprecated,deprecated]
+File "./vs.v", line 1486, characters 0-143:
+Warning: omega is deprecated since 8.12; use “lia” instead.
+[omega-is-deprecated,deprecated]
+File "./vs.v", line 1519, characters 0-4:
+Warning: Cannot define graph(s) for main [funind-cannot-define-graph,funind]
+File "./vs.v", line 1519, characters 0-4:
+Warning: Cannot build inversion information
+[funind-cannot-build-inversion,funind]
+File "./vs.v", line 1870, characters 0-758:
+Warning: Not a truly recursive fixpoint. [non-recursive,fixpoints]
+File "./vs.v", line 2020, characters 0-145:
+Warning: omega is deprecated since 8.12; use “lia” instead.
+[omega-is-deprecated,deprecated]
+File "./vs.v", line 2347, characters 0-27:
+Warning: The extraction is currently set to bypass opacity, the following
+opaque constant bodies have been accessed
+: the_loop_terminate main_terminate.
+ [extraction-opaque-accessed,extraction]
+File "./vs.v", line 2370, characters 0-21:
+Warning: The extraction is currently set to bypass opacity, the following
+opaque constant bodies have been accessed
+: the_loop_terminate main_terminate.
+ [extraction-opaque-accessed,extraction]
+vs.vo (real: 5.44, user: 4.90, sys: 0.51, mem: 501352 ko)
+COQC evars.v
+evars.vo (real: 1.10, user: 0.79, sys: 0.29, mem: 500100 ko)
+COQC extractable.v
+extractable.vo (real: 1.17, user: 0.88, sys: 0.29, mem: 501748 ko)
+COQC hnf_ctor.v
+hnf_ctor.vo (real: 1.11, user: 0.80, sys: 0.30, mem: 502088 ko)
+COQC issue27.v
+issue27.vo (real: 1.35, user: 1.02, sys: 0.31, mem: 522688 ko)
+COQC issue28.v
+File "./issue28.v", line 31, characters 0-282:
+Warning: Interpreting this declaration as if a global declaration prefixed by
+"Local", i.e. as a global declaration which shall not be available without
+qualification when imported. [local-declaration,scope]
+issue28.vo (real: 1.35, user: 1.05, sys: 0.29, mem: 522968 ko)
+COQC letin.v
+letin.vo (real: 1.21, user: 0.90, sys: 0.29, mem: 500080 ko)
+COQC modules_sections.v
+modules_sections.vo (real: 1.73, user: 1.35, sys: 0.35, mem: 526276 ko)
+COQC mutind.v
+mutind.vo (real: 1.19, user: 0.89, sys: 0.29, mem: 500068 ko)
+COQC opaque.v
+opaque.vo (real: 1.26, user: 0.94, sys: 0.31, mem: 500016 ko)
+COQC proj.v
+proj.vo (real: 1.52, user: 1.21, sys: 0.29, mem: 524028 ko)
+COQC run_in_tactic.v
+run_in_tactic.vo (real: 1.34, user: 1.03, sys: 0.29, mem: 522996 ko)
+COQC safechecker_test.v
+File "./safechecker_test.v", line 39, characters 0-27:
+Warning: To avoid stack overflow, large numbers in nat are interpreted as
+applications of Nat.of_num_uint. [abstract-large-number,numbers]
+File "./safechecker_test.v", line 54, characters 0-44:
+Warning: Notation "_ * _" was already used in scope type_scope.
+[notation-overridden,parsing]
+File "./safechecker_test.v", line 70, characters 0-50:
+Warning: Notation "_ = _ :> _" was already used in scope type_scope.
+[notation-overridden,parsing]
+File "./safechecker_test.v", line 72, characters 0-45:
+Warning: Notation "_ = _" was already used in scope type_scope.
+[notation-overridden,parsing]
+File "./safechecker_test.v", line 88, characters 0-68:
+Warning: Notation "{ _ : _ & _ }" was already used in scope type_scope.
+[notation-overridden,parsing]
+File "./safechecker_test.v", line 432, characters 0-221:
+Warning:
+Ignored instance declaration for “e_inv”: “forall
+ (A : Type@{Var(0)})
+ (B : Type@{Var(1)})
+ (f : A -> B),
+ IsEquiv@{Var(0) Var(1)} f ->
+ B -> A” is not a class
+[not-a-class,typeclasses]
+File "./safechecker_test.v", line 440, characters 0-83:
+Warning:
+Ignored instance declaration for “e_fun”: “forall
+ (A : Type@{Var(0)})
+ (B : Type@{Var(1)}),
+ Equiv@{Var(0) Var(1)} A B ->
+ A -> B” is not a class
+[not-a-class,typeclasses]
+safechecker_test.vo (real: 3.34, user: 2.89, sys: 0.44, mem: 726228 ko)
+COQC tmExistingInstance.v
+tmExistingInstance.vo (real: 1.21, user: 0.92, sys: 0.28, mem: 522724 ko)
+COQC tmInferInstance.v
+tmInferInstance.vo (real: 1.30, user: 0.98, sys: 0.31, mem: 522552 ko)
+COQC TypingTests.v
+TypingTests.vo (real: 2.62, user: 2.27, sys: 0.34, mem: 558304 ko)
+COQC unfold.v
+unfold.vo (real: 1.35, user: 1.03, sys: 0.31, mem: 522248 ko)
+COQC univ.v
+univ.vo (real: 1.28, user: 0.99, sys: 0.28, mem: 522992 ko)
+COQC tmVariable.v
+tmVariable.vo (real: 1.31, user: 1.01, sys: 0.29, mem: 524932 ko)
+COQC order_rec.v
+order_rec.vo (real: 1.41, user: 1.09, sys: 0.30, mem: 525128 ko)
+COQC erasure_test.v
+erasure_live_test.vo (real: 88.03, user: 86.21, sys: 1.46, mem: 1038900 ko)
+File "./erasure_test.v", line 44, characters 0-27:
+Warning: To avoid stack overflow, large numbers in nat are interpreted as
+applications of Nat.of_num_uint. [abstract-large-number,numbers]
+erasure_test.vo (real: 1.42, user: 1.10, sys: 0.31, mem: 543584 ko)
+ Time | Peak Mem | File Name
+---------------------------------------------
+2m59.43s | 1038900 ko | Total Time / Peak Mem
+---------------------------------------------
+1m26.21s | 1038900 ko | erasure_live_test.vo
+0m56.51s | 896928 ko | bugkncst.vo
+0m04.90s | 501352 ko | vs.vo
+0m02.89s | 726228 ko | safechecker_test.vo
+0m02.27s | 558304 ko | TypingTests.vo
+0m01.62s | 512080 ko | bug5.vo
+0m01.35s | 526276 ko | modules_sections.vo
+0m01.21s | 524028 ko | proj.vo
+0m01.10s | 543584 ko | erasure_test.vo
+0m01.09s | 525128 ko | order_rec.vo
+0m01.05s | 522968 ko | issue28.vo
+0m01.03s | 510284 ko | bug1.vo
+0m01.03s | 522996 ko | run_in_tactic.vo
+0m01.03s | 522248 ko | unfold.vo
+0m01.02s | 522688 ko | issue27.vo
+0m01.01s | 524932 ko | tmVariable.vo
+0m00.99s | 522992 ko | univ.vo
+0m00.98s | 522552 ko | tmInferInstance.vo
+0m00.94s | 510368 ko | castprop.vo
+0m00.94s | 500016 ko | opaque.vo
+0m00.92s | 522724 ko | tmExistingInstance.vo
+0m00.90s | 500080 ko | letin.vo
+0m00.89s | 500252 ko | bug7.vo
+0m00.89s | 500068 ko | mutind.vo
+0m00.88s | 500120 ko | case.vo
+0m00.88s | 501748 ko | extractable.vo
+0m00.85s | 500408 ko | bug6.vo
+0m00.84s | 500436 ko | bug8.vo
+0m00.81s | 500380 ko | bug2.vo
+0m00.81s | 500192 ko | cofix.vo
+0m00.80s | 502088 ko | hnf_ctor.vo
+0m00.79s | 500100 ko | evars.vo
+make[4]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/test-suite'
+make[3]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/test-suite'
+make[2]: Leaving directory '/builds/coq/coq/_build_ci/metacoq'
+make[1]: Leaving directory '/builds/coq/coq/_build_ci/metacoq'
++ make install
++ '[' -z x ']'
++ command make install
++ make install
+make[1]: Entering directory '/builds/coq/coq/_build_ci/metacoq'
+make -C template-coq
+make[2]: Entering directory '/builds/coq/coq/_build_ci/metacoq/template-coq'
+make -f Makefile.coq
+make[3]: Entering directory '/builds/coq/coq/_build_ci/metacoq/template-coq'
+make[4]: Nothing to be done for 'real-all'.
+./update_plugin.sh
+Updating gen-src from src
+Copying from src to gen-src
+Renaming files to camelCase
+patching file gen-src/cRelationClasses.mli
+Reversed (or previously applied) patch detected! Skipping patch.
+1 out of 1 hunk ignored -- saving rejects to file gen-src/cRelationClasses.mli.rej
+make[3]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/template-coq'
+make -f Makefile.template optfiles
+make[3]: Entering directory '/builds/coq/coq/_build_ci/metacoq/template-coq'
+make[3]: Nothing to be done for 'optfiles'.
+make[3]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/template-coq'
+cp src/template_coq.cm* build/
+make -f Makefile.template
+make[3]: Entering directory '/builds/coq/coq/_build_ci/metacoq/template-coq'
+make[4]: Nothing to be done for 'real-all'.
+make[3]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/template-coq'
+make -f Makefile.plugin
+make[3]: Entering directory '/builds/coq/coq/_build_ci/metacoq/template-coq'
+CAMLDEP gen-src/univSubst0.mli
+CAMLDEP gen-src/universes0.mli
+CAMLDEP gen-src/string0.mli
+CAMLDEP gen-src/run_extractable.mli
+CAMLDEP gen-src/specif.mli
+CAMLDEP gen-src/pretty.mli
+CAMLDEP gen-src/plugin_core.mli
+CAMLDEP gen-src/peanoNat.mli
+CAMLDEP gen-src/ordersTac.mli
+CAMLDEP gen-src/orders.mli
+CAMLDEP gen-src/ordersLists.mli
+CAMLDEP gen-src/ordersFacts.mli
+CAMLDEP gen-src/orderedType0.mli
+CAMLDEP gen-src/numeral.mli
+CAMLDEP gen-src/nat0.mli
+CAMLDEP gen-src/mSetProperties.mli
+CAMLDEP gen-src/mSetList.mli
+CAMLDEP gen-src/mSetInterface.mli
+CAMLDEP gen-src/mSetFacts.mli
+CAMLDEP gen-src/mSetDecide.mli
+CAMLDEP gen-src/mCString.mli
+CAMLDEP gen-src/mCRelations.mli
+CAMLDEP gen-src/mCProd.mli
+CAMLDEP gen-src/mCOption.mli
+CAMLDEP gen-src/mCList.mli
+CAMLDEP gen-src/mCCompare.mli
+CAMLDEP gen-src/mCPrelude.mli
+CAMLDEP gen-src/logic0.mli
+CAMLDEP gen-src/list0.mli
+CAMLDEP gen-src/liftSubst.mli
+CAMLDEP gen-src/hexadecimal.mli
+CAMLDEP gen-src/extractable.mli
+CAMLDEP gen-src/equalities.mli
+CAMLDEP gen-src/environment.mli
+CAMLDEP gen-src/decimal.mli
+CAMLDEP gen-src/datatypes.mli
+CAMLDEP gen-src/cRelationClasses.mli
+CAMLDEP gen-src/config0.mli
+CAMLDEP gen-src/compare_dec.mli
+CAMLDEP gen-src/common0.mli
+CAMLDEP gen-src/bool.mli
+CAMLDEP gen-src/binPos.mli
+CAMLDEP gen-src/binPosDef.mli
+CAMLDEP gen-src/binNums.mli
+CAMLDEP gen-src/binNat.mli
+CAMLDEP gen-src/binInt.mli
+CAMLDEP gen-src/basics.mli
+CAMLDEP gen-src/basicAst.mli
+CAMLDEP gen-src/astUtils.mli
+CAMLDEP gen-src/ast0.mli
+CAMLDEP gen-src/ascii.mli
+CAMLDEP gen-src/all_Forall.mli
+OCAMLLIBDEP gen-src/metacoq_template_plugin.mlpack
+CAMLDEP gen-src/univSubst0.ml
+CAMLDEP gen-src/universes0.ml
+CAMLDEP gen-src/tm_util.ml
+CAMLDEP gen-src/string0.ml
+CAMLDEP gen-src/specif.ml
+CAMLDEP gen-src/run_extractable.ml
+CAMLDEP gen-src/quoter.ml
+CAMLDEP gen-src/reification.ml
+CAMLDEP gen-src/pretty.ml
+CAMLDEP gen-src/plugin_core.ml
+CAMLDEP gen-src/peanoNat.ml
+CAMLDEP gen-src/ordersTac.ml
+CAMLDEP gen-src/orders.ml
+CAMLDEP gen-src/ordersLists.ml
+CAMLDEP gen-src/ordersFacts.ml
+CAMLDEP gen-src/orderedType0.ml
+CAMLDEP gen-src/numeral.ml
+CAMLDEP gen-src/nat0.ml
+CAMLDEP gen-src/mSetProperties.ml
+CAMLDEP gen-src/mSetList.ml
+CAMLDEP gen-src/mSetInterface.ml
+CAMLDEP gen-src/mSetFacts.ml
+CAMLDEP gen-src/mSetDecide.ml
+CAMLDEP gen-src/mCString.ml
+CAMLDEP gen-src/mCRelations.ml
+CAMLDEP gen-src/mCProd.ml
+CAMLDEP gen-src/mCOption.ml
+CAMLDEP gen-src/mCList.ml
+CAMLDEP gen-src/mCCompare.ml
+CAMLDEP gen-src/mCPrelude.ml
+CAMLDEP gen-src/logic0.ml
+CAMLDEP gen-src/list0.ml
+CAMLDEP gen-src/liftSubst.ml
+CAMLDEP gen-src/hexadecimal.ml
+CAMLDEP gen-src/extractable.ml
+CAMLDEP gen-src/equalities.ml
+CAMLDEP gen-src/environment.ml
+CAMLDEP gen-src/denoter.ml
+CAMLDEP gen-src/decimal.ml
+CAMLDEP gen-src/datatypes.ml
+CAMLDEP gen-src/cRelationClasses.ml
+CAMLDEP gen-src/config0.ml
+CAMLDEP gen-src/compare_dec.ml
+CAMLDEP gen-src/common0.ml
+CAMLDEP gen-src/bool.ml
+CAMLDEP gen-src/binPos.ml
+CAMLDEP gen-src/binPosDef.ml
+CAMLDEP gen-src/binNums.ml
+CAMLDEP gen-src/binNat.ml
+CAMLDEP gen-src/binInt.ml
+CAMLDEP gen-src/basics.ml
+CAMLDEP gen-src/basicAst.ml
+CAMLDEP gen-src/astUtils.ml
+CAMLDEP gen-src/ast_quoter.ml
+CAMLDEP gen-src/ast_denoter.ml
+CAMLDEP gen-src/ast0.ml
+CAMLDEP gen-src/ascii.ml
+CAMLDEP gen-src/all_Forall.ml
+CAMLOPT -c -for-pack Metacoq_template_plugin gen-src/tm_util.ml
+CAMLOPT -c -for-pack Metacoq_template_plugin gen-src/reification.ml
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/reification.cmx (real: 0.03, user: 0.01, sys: 0.01, mem: 14744 ko)
+CAMLC -c gen-src/plugin_core.mli
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/plugin_core.cmi (real: 0.02, user: 0.01, sys: 0.01, mem: 17304 ko)
+CAMLC -c gen-src/tm_util.ml
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/tm_util.cmx (real: 0.08, user: 0.04, sys: 0.03, mem: 21988 ko)
+CAMLC -c gen-src/reification.ml
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/reification.cmo (real: 0.01, user: 0.00, sys: 0.01, mem: 11896 ko)
+CAMLOPT -c -for-pack Metacoq_template_plugin gen-src/quoter.ml
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/tm_util.cmo (real: 0.04, user: 0.03, sys: 0.01, mem: 18588 ko)
+CAMLOPT -c -for-pack Metacoq_template_plugin gen-src/denoter.ml
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/denoter.cmx (real: 0.08, user: 0.06, sys: 0.02, mem: 24368 ko)
+CAMLOPT -c -for-pack Metacoq_template_plugin gen-src/plugin_core.ml
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/plugin_core.cmx (real: 0.10, user: 0.07, sys: 0.02, mem: 27576 ko)
+gen-src/quoter.cmx (real: 0.20, user: 0.16, sys: 0.03, mem: 34528 ko)
+CAMLC -c gen-src/quoter.ml
+CAMLOPT -c -for-pack Metacoq_template_plugin gen-src/ast_quoter.ml
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/quoter.cmo (real: 0.12, user: 0.09, sys: 0.02, mem: 26444 ko)
+CAMLC -c gen-src/ast_quoter.ml
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/ast_quoter.cmx (real: 0.12, user: 0.09, sys: 0.03, mem: 27268 ko)
+CAMLOPT -c -for-pack Metacoq_template_plugin gen-src/ast_denoter.ml
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/ast_quoter.cmo (real: 0.07, user: 0.05, sys: 0.02, mem: 22532 ko)
+CAMLC -c gen-src/run_extractable.mli
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/run_extractable.cmi (real: 0.02, user: 0.01, sys: 0.00, mem: 13788 ko)
+gen-src/ast_denoter.cmx (real: 0.09, user: 0.07, sys: 0.02, mem: 27192 ko)
+CAMLOPT -c -for-pack Metacoq_template_plugin gen-src/run_extractable.ml
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/run_extractable.cmx (real: 0.14, user: 0.11, sys: 0.02, mem: 30592 ko)
+CAMLOPT -pack -o gen-src/metacoq_template_plugin.cmx
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/metacoq_template_plugin.cmx (real: 0.21, user: 0.09, sys: 0.04, mem: 31480 ko)
+CAMLOPT -a -o gen-src/metacoq_template_plugin.cmxa
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/metacoq_template_plugin.cmxa (real: 0.03, user: 0.01, sys: 0.02, mem: 13916 ko)
+CAMLOPT -shared -o gen-src/metacoq_template_plugin.cmxs
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/metacoq_template_plugin.cmxs (real: 0.14, user: 0.10, sys: 0.03, mem: 18520 ko)
+COQC theories/ExtractableLoader.v
+theories/ExtractableLoader.vo (real: 0.10, user: 0.06, sys: 0.04, mem: 62624 ko)
+cp gen-src/metacoq_template_plugin.cm* build/
+make[3]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/template-coq'
+make[2]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/template-coq'
+make -C checker
+make -C pcuic
+make[2]: Entering directory '/builds/coq/coq/_build_ci/metacoq/checker'
+make -f Makefile.coq
+make[2]: Entering directory '/builds/coq/coq/_build_ci/metacoq/pcuic'
+make -f Makefile.pcuic
+make[3]: Entering directory '/builds/coq/coq/_build_ci/metacoq/checker'
+make[3]: Entering directory '/builds/coq/coq/_build_ci/metacoq/pcuic'
+make[4]: Nothing to be done for 'real-all'.
+./update_plugin.sh
+Renaming extracted files
+make[3]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/checker'
+make[2]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/checker'
+make -C examples
+make[2]: Entering directory '/builds/coq/coq/_build_ci/metacoq/examples'
+make -f Makefile.coq pretty-timed
+make[3]: Entering directory '/builds/coq/coq/_build_ci/metacoq/examples'
+make[4]: Nothing to be done for 'real-all'.
+# echo "All done, moving extraction files!"
+# ./clean_extraction.sh
+make[3]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/pcuic'
+make[2]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/pcuic'
+make -C safechecker
+make[2]: Entering directory '/builds/coq/coq/_build_ci/metacoq/safechecker'
+make -f Makefile.safechecker
+make[3]: Entering directory '/builds/coq/coq/_build_ci/metacoq/safechecker'
+make[6]: Nothing to be done for 'real-all'.
+make[4]: Nothing to be done for 'real-all'.
+echo "Done extracting the safe checker, moving extraction files!"
+Done extracting the safe checker, moving extraction files!
+./clean_extraction.sh
+Cleaning result of extraction
+Extraction up-to date
+make[3]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/safechecker'
+make -f Makefile.plugin
+make[3]: Entering directory '/builds/coq/coq/_build_ci/metacoq/safechecker'
+ Time | Peak Mem | File Name
+--------------------------------------------
+0m22.62s | 581920 ko | Total Time / Peak Mem
+--------------------------------------------
+0m19.93s | 581920 ko | tauto.vo
+0m01.56s | 527740 ko | demo.vo
+0m01.13s | 524144 ko | add_constructor.vo
+make[3]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/examples'
+make[2]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/examples'
+COQC theories/Loader.v
+theories/Loader.vo (real: 0.11, user: 0.07, sys: 0.03, mem: 63372 ko)
+make[3]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/safechecker'
+make[2]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/safechecker'
+make -C erasure
+make[2]: Entering directory '/builds/coq/coq/_build_ci/metacoq/erasure'
+make -f Makefile.erasure
+make[3]: Entering directory '/builds/coq/coq/_build_ci/metacoq/erasure'
+make[4]: Nothing to be done for 'real-all'.
+echo "Done extracting the erasure, moving extraction files!"
+Done extracting the erasure, moving extraction files!
+./clean_extraction.sh
+Cleaning result of extraction
+Extraction up-to date
+make[3]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/erasure'
+./clean_extraction.sh
+Cleaning result of extraction
+Extraction up-to date
+make -f Makefile.plugin
+make[3]: Entering directory '/builds/coq/coq/_build_ci/metacoq/erasure'
+COQC theories/Loader.v
+theories/Loader.vo (real: 0.44, user: 0.28, sys: 0.15, mem: 237408 ko)
+make[3]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/erasure'
+make[2]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/erasure'
+make -C template-coq install
+make[2]: Entering directory '/builds/coq/coq/_build_ci/metacoq/template-coq'
+make -f Makefile.coq
+make[3]: Entering directory '/builds/coq/coq/_build_ci/metacoq/template-coq'
+make[4]: Nothing to be done for 'real-all'.
+./update_plugin.sh
+Updating gen-src from src
+Copying from src to gen-src
+Renaming files to camelCase
+patching file gen-src/cRelationClasses.mli
+Reversed (or previously applied) patch detected! Skipping patch.
+1 out of 1 hunk ignored -- saving rejects to file gen-src/cRelationClasses.mli.rej
+make[3]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/template-coq'
+make -f Makefile.template optfiles
+make[3]: Entering directory '/builds/coq/coq/_build_ci/metacoq/template-coq'
+make[3]: Nothing to be done for 'optfiles'.
+make[3]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/template-coq'
+cp src/template_coq.cm* build/
+make -f Makefile.template
+make[3]: Entering directory '/builds/coq/coq/_build_ci/metacoq/template-coq'
+make[4]: Nothing to be done for 'real-all'.
+make[3]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/template-coq'
+make -f Makefile.plugin
+make[3]: Entering directory '/builds/coq/coq/_build_ci/metacoq/template-coq'
+CAMLDEP gen-src/univSubst0.mli
+CAMLDEP gen-src/universes0.mli
+CAMLDEP gen-src/string0.mli
+CAMLDEP gen-src/specif.mli
+CAMLDEP gen-src/run_extractable.mli
+CAMLDEP gen-src/pretty.mli
+CAMLDEP gen-src/plugin_core.mli
+CAMLDEP gen-src/peanoNat.mli
+CAMLDEP gen-src/ordersTac.mli
+CAMLDEP gen-src/orders.mli
+CAMLDEP gen-src/ordersLists.mli
+CAMLDEP gen-src/ordersFacts.mli
+CAMLDEP gen-src/orderedType0.mli
+CAMLDEP gen-src/numeral.mli
+CAMLDEP gen-src/nat0.mli
+CAMLDEP gen-src/mSetProperties.mli
+CAMLDEP gen-src/mSetList.mli
+CAMLDEP gen-src/mSetFacts.mli
+CAMLDEP gen-src/mSetInterface.mli
+CAMLDEP gen-src/mSetDecide.mli
+CAMLDEP gen-src/mCString.mli
+CAMLDEP gen-src/mCRelations.mli
+CAMLDEP gen-src/mCProd.mli
+CAMLDEP gen-src/mCOption.mli
+CAMLDEP gen-src/mCList.mli
+CAMLDEP gen-src/mCCompare.mli
+CAMLDEP gen-src/mCPrelude.mli
+CAMLDEP gen-src/logic0.mli
+CAMLDEP gen-src/list0.mli
+CAMLDEP gen-src/liftSubst.mli
+CAMLDEP gen-src/hexadecimal.mli
+CAMLDEP gen-src/extractable.mli
+CAMLDEP gen-src/equalities.mli
+CAMLDEP gen-src/environment.mli
+CAMLDEP gen-src/decimal.mli
+CAMLDEP gen-src/datatypes.mli
+CAMLDEP gen-src/cRelationClasses.mli
+CAMLDEP gen-src/config0.mli
+CAMLDEP gen-src/compare_dec.mli
+CAMLDEP gen-src/common0.mli
+CAMLDEP gen-src/bool.mli
+CAMLDEP gen-src/binPos.mli
+CAMLDEP gen-src/binPosDef.mli
+CAMLDEP gen-src/binNums.mli
+CAMLDEP gen-src/binNat.mli
+CAMLDEP gen-src/binInt.mli
+CAMLDEP gen-src/basics.mli
+CAMLDEP gen-src/basicAst.mli
+CAMLDEP gen-src/astUtils.mli
+CAMLDEP gen-src/ast0.mli
+CAMLDEP gen-src/ascii.mli
+CAMLDEP gen-src/all_Forall.mli
+OCAMLLIBDEP gen-src/metacoq_template_plugin.mlpack
+CAMLDEP gen-src/univSubst0.ml
+CAMLDEP gen-src/universes0.ml
+CAMLDEP gen-src/tm_util.ml
+CAMLDEP gen-src/string0.ml
+CAMLDEP gen-src/specif.ml
+CAMLDEP gen-src/run_extractable.ml
+CAMLDEP gen-src/quoter.ml
+CAMLDEP gen-src/reification.ml
+CAMLDEP gen-src/pretty.ml
+CAMLDEP gen-src/plugin_core.ml
+CAMLDEP gen-src/peanoNat.ml
+CAMLDEP gen-src/ordersTac.ml
+CAMLDEP gen-src/orders.ml
+CAMLDEP gen-src/ordersLists.ml
+CAMLDEP gen-src/ordersFacts.ml
+CAMLDEP gen-src/orderedType0.ml
+CAMLDEP gen-src/numeral.ml
+CAMLDEP gen-src/nat0.ml
+CAMLDEP gen-src/mSetProperties.ml
+CAMLDEP gen-src/mSetList.ml
+CAMLDEP gen-src/mSetInterface.ml
+CAMLDEP gen-src/mSetFacts.ml
+CAMLDEP gen-src/mSetDecide.ml
+CAMLDEP gen-src/mCString.ml
+CAMLDEP gen-src/mCRelations.ml
+CAMLDEP gen-src/mCProd.ml
+CAMLDEP gen-src/mCOption.ml
+CAMLDEP gen-src/mCList.ml
+CAMLDEP gen-src/mCCompare.ml
+CAMLDEP gen-src/mCPrelude.ml
+CAMLDEP gen-src/logic0.ml
+CAMLDEP gen-src/list0.ml
+CAMLDEP gen-src/liftSubst.ml
+CAMLDEP gen-src/hexadecimal.ml
+CAMLDEP gen-src/extractable.ml
+CAMLDEP gen-src/equalities.ml
+CAMLDEP gen-src/environment.ml
+CAMLDEP gen-src/denoter.ml
+CAMLDEP gen-src/decimal.ml
+CAMLDEP gen-src/datatypes.ml
+CAMLDEP gen-src/cRelationClasses.ml
+CAMLDEP gen-src/config0.ml
+CAMLDEP gen-src/compare_dec.ml
+CAMLDEP gen-src/common0.ml
+CAMLDEP gen-src/bool.ml
+CAMLDEP gen-src/binPos.ml
+CAMLDEP gen-src/binPosDef.ml
+CAMLDEP gen-src/binNums.ml
+CAMLDEP gen-src/binNat.ml
+CAMLDEP gen-src/binInt.ml
+CAMLDEP gen-src/basics.ml
+CAMLDEP gen-src/astUtils.ml
+CAMLDEP gen-src/basicAst.ml
+CAMLDEP gen-src/ast_denoter.ml
+CAMLDEP gen-src/ast_quoter.ml
+CAMLDEP gen-src/ast0.ml
+CAMLDEP gen-src/ascii.ml
+CAMLDEP gen-src/all_Forall.ml
+CAMLOPT -c -for-pack Metacoq_template_plugin gen-src/reification.ml
+CAMLOPT -c -for-pack Metacoq_template_plugin gen-src/tm_util.ml
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/reification.cmx (real: 0.02, user: 0.01, sys: 0.01, mem: 14740 ko)
+CAMLC -c gen-src/plugin_core.mli
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/plugin_core.cmi (real: 0.03, user: 0.02, sys: 0.00, mem: 17196 ko)
+CAMLC -c gen-src/tm_util.ml
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/tm_util.cmx (real: 0.08, user: 0.04, sys: 0.02, mem: 22136 ko)
+CAMLC -c gen-src/reification.ml
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/reification.cmo (real: 0.02, user: 0.01, sys: 0.00, mem: 11760 ko)
+CAMLOPT -c -for-pack Metacoq_template_plugin gen-src/quoter.ml
+gen-src/tm_util.cmo (real: 0.04, user: 0.02, sys: 0.01, mem: 18448 ko)
+CAMLOPT -c -for-pack Metacoq_template_plugin gen-src/denoter.ml
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/denoter.cmx (real: 0.12, user: 0.08, sys: 0.02, mem: 24324 ko)
+CAMLOPT -c -for-pack Metacoq_template_plugin gen-src/plugin_core.ml
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/quoter.cmx (real: 0.22, user: 0.19, sys: 0.03, mem: 34468 ko)
+CAMLC -c gen-src/quoter.ml
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/quoter.cmo (real: 0.12, user: 0.10, sys: 0.01, mem: 26404 ko)
+CAMLOPT -c -for-pack Metacoq_template_plugin gen-src/ast_quoter.ml
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/plugin_core.cmx (real: 0.28, user: 0.07, sys: 0.03, mem: 27504 ko)
+CAMLC -c gen-src/ast_quoter.ml
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/ast_quoter.cmo (real: 0.09, user: 0.05, sys: 0.02, mem: 22440 ko)
+CAMLC -c gen-src/run_extractable.mli
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/run_extractable.cmi (real: 0.02, user: 0.01, sys: 0.00, mem: 13824 ko)
+gen-src/ast_quoter.cmx (real: 0.20, user: 0.10, sys: 0.03, mem: 27364 ko)
+CAMLOPT -c -for-pack Metacoq_template_plugin gen-src/ast_denoter.ml
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/ast_denoter.cmx (real: 0.19, user: 0.08, sys: 0.03, mem: 27288 ko)
+CAMLOPT -c -for-pack Metacoq_template_plugin gen-src/run_extractable.ml
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/run_extractable.cmx (real: 0.18, user: 0.09, sys: 0.03, mem: 30504 ko)
+CAMLOPT -pack -o gen-src/metacoq_template_plugin.cmx
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/metacoq_template_plugin.cmx (real: 0.18, user: 0.11, sys: 0.04, mem: 31632 ko)
+CAMLOPT -a -o gen-src/metacoq_template_plugin.cmxa
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/metacoq_template_plugin.cmxa (real: 0.05, user: 0.01, sys: 0.02, mem: 14056 ko)
+CAMLOPT -shared -o gen-src/metacoq_template_plugin.cmxs
+findlib: [WARNING] Interface numeral.cmi occurs in several directories: /builds/coq/coq/_install_ci/lib/coq/plugins/syntax, gen-src
+gen-src/metacoq_template_plugin.cmxs (real: 0.15, user: 0.10, sys: 0.04, mem: 18416 ko)
+COQC theories/ExtractableLoader.v
+theories/ExtractableLoader.vo (real: 0.09, user: 0.04, sys: 0.04, mem: 62716 ko)
+cp gen-src/metacoq_template_plugin.cm* build/
+make[3]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/template-coq'
+make -f Makefile.coq install
+make[3]: Entering directory '/builds/coq/coq/_build_ci/metacoq/template-coq'
+INSTALL theories/utils/MCPrelude.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template//utils
+INSTALL theories/utils/All_Forall.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template//utils
+INSTALL theories/utils/MCArith.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template//utils
+INSTALL theories/utils/MCCompare.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template//utils
+INSTALL theories/utils/MCEquality.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template//utils
+INSTALL theories/utils/LibHypsNaming.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template//utils
+INSTALL theories/utils/MCList.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template//utils
+INSTALL theories/utils/MCOption.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template//utils
+INSTALL theories/utils/MCProd.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template//utils
+INSTALL theories/utils/MCRelations.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template//utils
+INSTALL theories/utils/MCSquash.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template//utils
+INSTALL theories/utils/MCString.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template//utils
+INSTALL theories/utils/wGraph.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template//utils
+INSTALL theories/common/uGraph.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template//common
+INSTALL theories/utils.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL theories/config.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL theories/Universes.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL theories/BasicAst.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL theories/Environment.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL theories/Ast.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL theories/AstUtils.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL theories/Induction.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL theories/LiftSubst.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL theories/UnivSubst.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL theories/Pretty.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL theories/EnvironmentTyping.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL theories/WfInv.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL theories/Typing.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL theories/TypingWf.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL theories/TemplateMonad.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL theories/TemplateMonad/Common.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template//TemplateMonad
+INSTALL theories/TemplateMonad/Core.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template//TemplateMonad
+INSTALL theories/TemplateMonad/Extractable.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template//TemplateMonad
+INSTALL theories/monad_utils.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL theories/Constants.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL theories/Extraction.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL theories/utils/MCPrelude.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template//utils
+INSTALL theories/utils/All_Forall.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template//utils
+INSTALL theories/utils/MCArith.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template//utils
+INSTALL theories/utils/MCCompare.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template//utils
+INSTALL theories/utils/MCEquality.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template//utils
+INSTALL theories/utils/LibHypsNaming.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template//utils
+INSTALL theories/utils/MCList.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template//utils
+INSTALL theories/utils/MCOption.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template//utils
+INSTALL theories/utils/MCProd.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template//utils
+INSTALL theories/utils/MCRelations.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template//utils
+INSTALL theories/utils/MCSquash.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template//utils
+INSTALL theories/utils/MCString.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template//utils
+INSTALL theories/utils/wGraph.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template//utils
+INSTALL theories/common/uGraph.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template//common
+INSTALL theories/utils.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL theories/config.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL theories/Universes.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL theories/BasicAst.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL theories/Environment.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL theories/Ast.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL theories/AstUtils.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL theories/Induction.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL theories/LiftSubst.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL theories/UnivSubst.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL theories/Pretty.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL theories/EnvironmentTyping.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL theories/WfInv.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL theories/Typing.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL theories/TypingWf.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL theories/TemplateMonad.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL theories/TemplateMonad/Common.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template//TemplateMonad
+INSTALL theories/TemplateMonad/Core.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template//TemplateMonad
+INSTALL theories/TemplateMonad/Extractable.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template//TemplateMonad
+INSTALL theories/monad_utils.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL theories/Constants.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL theories/Extraction.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL theories/utils/MCPrelude.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template//utils
+INSTALL theories/utils/All_Forall.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template//utils
+INSTALL theories/utils/MCArith.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template//utils
+INSTALL theories/utils/MCCompare.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template//utils
+INSTALL theories/utils/MCEquality.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template//utils
+INSTALL theories/utils/LibHypsNaming.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template//utils
+INSTALL theories/utils/MCList.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template//utils
+INSTALL theories/utils/MCOption.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template//utils
+INSTALL theories/utils/MCProd.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template//utils
+INSTALL theories/utils/MCRelations.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template//utils
+INSTALL theories/utils/MCSquash.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template//utils
+INSTALL theories/utils/MCString.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template//utils
+INSTALL theories/utils/wGraph.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template//utils
+INSTALL theories/common/uGraph.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template//common
+INSTALL theories/utils.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL theories/config.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL theories/Universes.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL theories/BasicAst.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL theories/Environment.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL theories/Ast.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL theories/AstUtils.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL theories/Induction.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL theories/LiftSubst.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL theories/UnivSubst.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL theories/Pretty.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL theories/EnvironmentTyping.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL theories/WfInv.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL theories/Typing.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL theories/TypingWf.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL theories/TemplateMonad.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL theories/TemplateMonad/Common.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template//TemplateMonad
+INSTALL theories/TemplateMonad/Core.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template//TemplateMonad
+INSTALL theories/TemplateMonad/Extractable.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template//TemplateMonad
+INSTALL theories/monad_utils.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL theories/Constants.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL theories/Extraction.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+make[4]: Entering directory '/builds/coq/coq/_build_ci/metacoq/template-coq'
+make[4]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/template-coq'
+make[3]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/template-coq'
+make -f Makefile.template install
+make[3]: Entering directory '/builds/coq/coq/_build_ci/metacoq/template-coq'
+INSTALL theories/Loader.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL theories/All.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL theories/Loader.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL theories/All.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL theories/Loader.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL theories/All.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL src/template_coq.cmi /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL src/template_coq.cmxs /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL src/template_coq.cmxs /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL src/template_coq.cmxa /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL src/template_coq.cmx /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+make[4]: Entering directory '/builds/coq/coq/_build_ci/metacoq/template-coq'
+make[4]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/template-coq'
+make[3]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/template-coq'
+make -f Makefile.plugin install
+make[3]: Entering directory '/builds/coq/coq/_build_ci/metacoq/template-coq'
+INSTALL theories/ExtractableLoader.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL theories/ExtractableLoader.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL theories/ExtractableLoader.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL gen-src/mCPrelude.cmi /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL gen-src/metacoq_template_plugin.cmi /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL gen-src/mCPrelude.cmi /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL gen-src/metacoq_template_plugin.cmxs /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL gen-src/metacoq_template_plugin.cmxs /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL gen-src/metacoq_template_plugin.cmxa /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL gen-src/mCPrelude.cmx /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+INSTALL gen-src/metacoq_template_plugin.cmx /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Template/
+make[4]: Entering directory '/builds/coq/coq/_build_ci/metacoq/template-coq'
+make[4]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/template-coq'
+make[3]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/template-coq'
+make[2]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/template-coq'
+make -C checker install
+make[2]: Entering directory '/builds/coq/coq/_build_ci/metacoq/checker'
+make -f Makefile.coq
+make[3]: Entering directory '/builds/coq/coq/_build_ci/metacoq/checker'
+make[4]: Nothing to be done for 'real-all'.
+./update_plugin.sh
+Renaming extracted files
+make[3]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/checker'
+make -f Makefile.coq install
+make[3]: Entering directory '/builds/coq/coq/_build_ci/metacoq/checker'
+INSTALL theories/Reflect.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Checker/
+INSTALL theories/Generation.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Checker/
+INSTALL theories/WeakeningEnv.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Checker/
+INSTALL theories/Closed.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Checker/
+INSTALL theories/Weakening.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Checker/
+INSTALL theories/Substitution.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Checker/
+INSTALL theories/Checker.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Checker/
+INSTALL theories/WcbvEval.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Checker/
+INSTALL theories/Retyping.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Checker/
+INSTALL theories/Normal.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Checker/
+INSTALL theories/All.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Checker/
+INSTALL theories/Reflect.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Checker/
+INSTALL theories/Generation.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Checker/
+INSTALL theories/WeakeningEnv.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Checker/
+INSTALL theories/Closed.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Checker/
+INSTALL theories/Weakening.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Checker/
+INSTALL theories/Substitution.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Checker/
+INSTALL theories/Checker.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Checker/
+INSTALL theories/WcbvEval.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Checker/
+INSTALL theories/Retyping.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Checker/
+INSTALL theories/Normal.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Checker/
+INSTALL theories/All.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Checker/
+INSTALL theories/Reflect.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Checker/
+INSTALL theories/Generation.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Checker/
+INSTALL theories/WeakeningEnv.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Checker/
+INSTALL theories/Closed.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Checker/
+INSTALL theories/Weakening.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Checker/
+INSTALL theories/Substitution.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Checker/
+INSTALL theories/Checker.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Checker/
+INSTALL theories/WcbvEval.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Checker/
+INSTALL theories/Retyping.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Checker/
+INSTALL theories/Normal.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Checker/
+INSTALL theories/All.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Checker/
+make[4]: Entering directory '/builds/coq/coq/_build_ci/metacoq/checker'
+make[4]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/checker'
+make[3]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/checker'
+# make -f Makefile.plugin install
+make[2]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/checker'
+make -C pcuic install
+make[2]: Entering directory '/builds/coq/coq/_build_ci/metacoq/pcuic'
+make -f Makefile.pcuic
+make[3]: Entering directory '/builds/coq/coq/_build_ci/metacoq/pcuic'
+make[4]: Nothing to be done for 'real-all'.
+# echo "All done, moving extraction files!"
+# ./clean_extraction.sh
+make[3]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/pcuic'
+make -f Makefile.pcuic install
+make[3]: Entering directory '/builds/coq/coq/_build_ci/metacoq/pcuic'
+INSTALL theories/PCUICUtils.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICAst.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICSize.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICAstUtils.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICInduction.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICReflect.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICLiftSubst.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICUnivSubst.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICTyping.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICInversion.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICPosition.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICNormal.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICNameless.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICEquality.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICWeakeningEnv.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICClosed.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICWeakening.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICUnivSubstitution.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICSubstitution.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICCumulativity.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICReduction.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICParallelReduction.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICParallelReductionConfluence.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICConfluence.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICContextConversion.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICConversion.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICGeneration.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICAlpha.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICPrincipality.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICCtxShape.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICContexts.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICArities.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICSpine.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICInductives.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICValidity.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICInductiveInversion.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICSR.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICMetaTheory.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICCSubst.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICWcbvEval.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICChecker.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICPretty.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICCheckerCompleteness.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICRetyping.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICElimination.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICSN.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICSigmaCalculus.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICSafeLemmata.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/TemplateToPCUIC.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/TemplateToPCUICCorrectness.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICToTemplate.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICToTemplateCorrectness.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICUtils.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICAst.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICSize.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICAstUtils.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICInduction.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICReflect.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICLiftSubst.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICUnivSubst.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICTyping.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICInversion.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICPosition.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICNormal.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICNameless.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICEquality.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICWeakeningEnv.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICClosed.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICWeakening.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICUnivSubstitution.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICSubstitution.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICCumulativity.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICReduction.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICParallelReduction.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICParallelReductionConfluence.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICConfluence.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICContextConversion.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICConversion.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICGeneration.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICAlpha.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICPrincipality.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICCtxShape.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICContexts.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICArities.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICSpine.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICInductives.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICValidity.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICInductiveInversion.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICSR.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICMetaTheory.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICCSubst.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICWcbvEval.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICChecker.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICPretty.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICCheckerCompleteness.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICRetyping.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICElimination.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICSN.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICSigmaCalculus.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICSafeLemmata.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/TemplateToPCUIC.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/TemplateToPCUICCorrectness.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICToTemplate.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICToTemplateCorrectness.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICUtils.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICAst.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICSize.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICAstUtils.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICInduction.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICReflect.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICLiftSubst.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICUnivSubst.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICTyping.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICInversion.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICPosition.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICNormal.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICNameless.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICEquality.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICWeakeningEnv.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICClosed.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICWeakening.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICUnivSubstitution.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICSubstitution.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICCumulativity.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICReduction.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICParallelReduction.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICParallelReductionConfluence.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICConfluence.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICContextConversion.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICConversion.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICGeneration.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICAlpha.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICPrincipality.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICCtxShape.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICContexts.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICArities.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICSpine.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICInductives.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICValidity.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICInductiveInversion.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICSR.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICMetaTheory.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICCSubst.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICWcbvEval.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICChecker.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICPretty.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICCheckerCompleteness.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICRetyping.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICElimination.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICSN.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICSigmaCalculus.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICSafeLemmata.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/TemplateToPCUIC.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/TemplateToPCUICCorrectness.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICToTemplate.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+INSTALL theories/PCUICToTemplateCorrectness.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/PCUIC/
+make[4]: Entering directory '/builds/coq/coq/_build_ci/metacoq/pcuic'
+make[4]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/pcuic'
+make[3]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/pcuic'
+# make -f Makefile.plugin install
+make[2]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/pcuic'
+make -C safechecker install
+make[2]: Entering directory '/builds/coq/coq/_build_ci/metacoq/safechecker'
+make -f Makefile.safechecker
+make[3]: Entering directory '/builds/coq/coq/_build_ci/metacoq/safechecker'
+make[4]: Nothing to be done for 'real-all'.
+echo "Done extracting the safe checker, moving extraction files!"
+Done extracting the safe checker, moving extraction files!
+./clean_extraction.sh
+Cleaning result of extraction
+Extraction up-to date
+make[3]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/safechecker'
+make -f Makefile.plugin
+make[3]: Entering directory '/builds/coq/coq/_build_ci/metacoq/safechecker'
+COQC theories/Loader.v
+theories/Loader.vo (real: 0.12, user: 0.07, sys: 0.04, mem: 63996 ko)
+make[3]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/safechecker'
+make -f Makefile.safechecker install
+make[3]: Entering directory '/builds/coq/coq/_build_ci/metacoq/safechecker'
+INSTALL theories/PCUICSafeReduce.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/SafeChecker/
+INSTALL theories/PCUICSafeConversion.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/SafeChecker/
+INSTALL theories/PCUICSafeChecker.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/SafeChecker/
+INSTALL theories/SafeTemplateChecker.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/SafeChecker/
+INSTALL theories/PCUICSafeRetyping.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/SafeChecker/
+INSTALL theories/Extraction.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/SafeChecker/
+INSTALL theories/PCUICSafeReduce.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/SafeChecker/
+INSTALL theories/PCUICSafeConversion.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/SafeChecker/
+INSTALL theories/PCUICSafeChecker.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/SafeChecker/
+INSTALL theories/SafeTemplateChecker.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/SafeChecker/
+INSTALL theories/PCUICSafeRetyping.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/SafeChecker/
+INSTALL theories/Extraction.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/SafeChecker/
+INSTALL theories/PCUICSafeReduce.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/SafeChecker/
+INSTALL theories/PCUICSafeConversion.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/SafeChecker/
+INSTALL theories/PCUICSafeChecker.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/SafeChecker/
+INSTALL theories/SafeTemplateChecker.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/SafeChecker/
+INSTALL theories/PCUICSafeRetyping.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/SafeChecker/
+INSTALL theories/Extraction.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/SafeChecker/
+make[4]: Entering directory '/builds/coq/coq/_build_ci/metacoq/safechecker'
+make[4]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/safechecker'
+make[3]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/safechecker'
+make -f Makefile.plugin install
+make[3]: Entering directory '/builds/coq/coq/_build_ci/metacoq/safechecker'
+INSTALL theories/Loader.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/SafeChecker/
+INSTALL theories/Loader.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/SafeChecker/
+INSTALL theories/Loader.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/SafeChecker/
+INSTALL src/metacoq_safechecker_plugin.cmi /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/SafeChecker/
+INSTALL src/metacoq_safechecker_plugin.cmxs /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/SafeChecker/
+INSTALL src/metacoq_safechecker_plugin.cmxs /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/SafeChecker/
+INSTALL src/metacoq_safechecker_plugin.cmxa /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/SafeChecker/
+INSTALL src/metacoq_safechecker_plugin.cmx /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/SafeChecker/
+make[4]: Entering directory '/builds/coq/coq/_build_ci/metacoq/safechecker'
+make[4]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/safechecker'
+make[3]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/safechecker'
+make[2]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/safechecker'
+make -C erasure install
+make[2]: Entering directory '/builds/coq/coq/_build_ci/metacoq/erasure'
+make -f Makefile.erasure
+make[3]: Entering directory '/builds/coq/coq/_build_ci/metacoq/erasure'
+make[4]: Nothing to be done for 'real-all'.
+echo "Done extracting the erasure, moving extraction files!"
+Done extracting the erasure, moving extraction files!
+./clean_extraction.sh
+Cleaning result of extraction
+Extraction up-to date
+make[3]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/erasure'
+./clean_extraction.sh
+Cleaning result of extraction
+Extraction up-to date
+make -f Makefile.plugin
+make[3]: Entering directory '/builds/coq/coq/_build_ci/metacoq/erasure'
+COQC theories/Loader.v
+theories/Loader.vo (real: 0.45, user: 0.29, sys: 0.15, mem: 238116 ko)
+make[3]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/erasure'
+make -f Makefile.erasure install
+make[3]: Entering directory '/builds/coq/coq/_build_ci/metacoq/erasure'
+INSTALL theories/EAst.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Erasure/
+INSTALL theories/EAstUtils.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Erasure/
+INSTALL theories/EInduction.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Erasure/
+INSTALL theories/ELiftSubst.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Erasure/
+INSTALL theories/EPretty.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Erasure/
+INSTALL theories/ECSubst.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Erasure/
+INSTALL theories/EWcbvEval.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Erasure/
+INSTALL theories/EWndEval.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Erasure/
+INSTALL theories/ETyping.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Erasure/
+INSTALL theories/Extract.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Erasure/
+INSTALL theories/EAll.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Erasure/
+INSTALL theories/Extraction.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Erasure/
+INSTALL theories/Prelim.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Erasure/
+INSTALL theories/ESubstitution.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Erasure/
+INSTALL theories/EInversion.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Erasure/
+INSTALL theories/EArities.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Erasure/
+INSTALL theories/ErasureCorrectness.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Erasure/
+INSTALL theories/ErasureFunction.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Erasure/
+INSTALL theories/SafeErasureFunction.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Erasure/
+INSTALL theories/SafeTemplateErasure.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Erasure/
+INSTALL theories/EAst.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Erasure/
+INSTALL theories/EAstUtils.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Erasure/
+INSTALL theories/EInduction.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Erasure/
+INSTALL theories/ELiftSubst.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Erasure/
+INSTALL theories/EPretty.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Erasure/
+INSTALL theories/ECSubst.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Erasure/
+INSTALL theories/EWcbvEval.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Erasure/
+INSTALL theories/EWndEval.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Erasure/
+INSTALL theories/ETyping.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Erasure/
+INSTALL theories/Extract.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Erasure/
+INSTALL theories/EAll.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Erasure/
+INSTALL theories/Extraction.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Erasure/
+INSTALL theories/Prelim.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Erasure/
+INSTALL theories/ESubstitution.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Erasure/
+INSTALL theories/EInversion.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Erasure/
+INSTALL theories/EArities.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Erasure/
+INSTALL theories/ErasureCorrectness.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Erasure/
+INSTALL theories/ErasureFunction.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Erasure/
+INSTALL theories/SafeErasureFunction.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Erasure/
+INSTALL theories/SafeTemplateErasure.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Erasure/
+INSTALL theories/EAst.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Erasure/
+INSTALL theories/EAstUtils.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Erasure/
+INSTALL theories/EInduction.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Erasure/
+INSTALL theories/ELiftSubst.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Erasure/
+INSTALL theories/EPretty.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Erasure/
+INSTALL theories/ECSubst.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Erasure/
+INSTALL theories/EWcbvEval.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Erasure/
+INSTALL theories/EWndEval.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Erasure/
+INSTALL theories/ETyping.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Erasure/
+INSTALL theories/Extract.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Erasure/
+INSTALL theories/EAll.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Erasure/
+INSTALL theories/Extraction.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Erasure/
+INSTALL theories/Prelim.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Erasure/
+INSTALL theories/ESubstitution.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Erasure/
+INSTALL theories/EInversion.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Erasure/
+INSTALL theories/EArities.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Erasure/
+INSTALL theories/ErasureCorrectness.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Erasure/
+INSTALL theories/ErasureFunction.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Erasure/
+INSTALL theories/SafeErasureFunction.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Erasure/
+INSTALL theories/SafeTemplateErasure.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Erasure/
+make[4]: Entering directory '/builds/coq/coq/_build_ci/metacoq/erasure'
+make[4]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/erasure'
+make[3]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/erasure'
+make -f Makefile.plugin install
+make[3]: Entering directory '/builds/coq/coq/_build_ci/metacoq/erasure'
+INSTALL theories/Loader.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Erasure/
+INSTALL theories/Loader.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Erasure/
+INSTALL theories/Loader.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Erasure/
+INSTALL src/metacoq_erasure_plugin.cmi /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Erasure/
+INSTALL src/metacoq_erasure_plugin.cmxs /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Erasure/
+INSTALL src/metacoq_erasure_plugin.cmxs /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Erasure/
+INSTALL src/metacoq_erasure_plugin.cmxa /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Erasure/
+INSTALL src/metacoq_erasure_plugin.cmx /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Erasure/
+make[4]: Entering directory '/builds/coq/coq/_build_ci/metacoq/erasure'
+make[4]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/erasure'
+make[3]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/erasure'
+make[2]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/erasure'
+make -C translations install
+make[2]: Entering directory '/builds/coq/coq/_build_ci/metacoq/translations'
+cat metacoq-config > _CoqProject
+cat _CoqProject.in >> _CoqProject
+coq_makefile -f _CoqProject -o Makefile.coq
+Warning: ../template-coq/theories (used in -R or -Q) is not a subdirectory of the current directory
+
+make -f Makefile.coq pretty-timed
+make[3]: Entering directory '/builds/coq/coq/_build_ci/metacoq/translations'
+COQDEP VFILES
+*** Warning: in file sigma.v,
+ required library Loader matches several files in path
+ (found Loader.v in ../template-coq/theories and ../checker/theories; used the latter)
+COQC sigma.v
+COQC MiniHoTT.v
+File "./MiniHoTT.v", line 37, characters 0-198:
+Warning: Notation "exists _ .. _ , _" was already used in scope type_scope.
+[notation-overridden,parsing]
+File "./MiniHoTT.v", line 41, characters 0-64:
+Warning: Notation "{ _ : _ & _ }" was already used in scope type_scope.
+[notation-overridden,parsing]
+File "./MiniHoTT.v", line 96, characters 0-37:
+Warning: Declaring a scope implicitly is deprecated; use in advance an
+explicit "Declare Scope equiv_scope.". [undeclared-scope,deprecated]
+File "./MiniHoTT.v", line 98, characters 0-35:
+Warning: Declaring a scope implicitly is deprecated; use in advance an
+explicit "Declare Scope path_scope.". [undeclared-scope,deprecated]
+File "./MiniHoTT.v", line 99, characters 0-45:
+Warning: Declaring a scope implicitly is deprecated; use in advance an
+explicit "Declare Scope fibration_scope.". [undeclared-scope,deprecated]
+File "./MiniHoTT.v", line 100, characters 0-37:
+Warning: Declaring a scope implicitly is deprecated; use in advance an
+explicit "Declare Scope trunc_scope.". [undeclared-scope,deprecated]
+File "./MiniHoTT.v", line 136, characters 0-21:
+Warning: Adding and removing hints in the core database implicitly is
+deprecated. Please specify a hint database.
+[implicit-core-hint-db,deprecated]
+File "./MiniHoTT.v", line 139, characters 0-52:
+Warning: Notation "_ = _ :> _" was already used in scope type_scope.
+[notation-overridden,parsing]
+File "./MiniHoTT.v", line 140, characters 0-45:
+Warning: Notation "_ = _" was already used in scope type_scope.
+[notation-overridden,parsing]
+sigma.vo (real: 1.17, user: 0.86, sys: 0.30, mem: 500064 ko)
+COQC MiniHoTT_paths.v
+File "./MiniHoTT_paths.v", line 41, characters 0-198:
+Warning: Notation "exists _ .. _ , _" was already used in scope type_scope.
+[notation-overridden,parsing]
+File "./MiniHoTT_paths.v", line 45, characters 0-64:
+Warning: Notation "{ _ : _ & _ }" was already used in scope type_scope.
+[notation-overridden,parsing]
+File "./MiniHoTT_paths.v", line 100, characters 0-37:
+Warning: Declaring a scope implicitly is deprecated; use in advance an
+explicit "Declare Scope equiv_scope.". [undeclared-scope,deprecated]
+File "./MiniHoTT_paths.v", line 102, characters 0-35:
+Warning: Declaring a scope implicitly is deprecated; use in advance an
+explicit "Declare Scope path_scope.". [undeclared-scope,deprecated]
+File "./MiniHoTT_paths.v", line 103, characters 0-45:
+Warning: Declaring a scope implicitly is deprecated; use in advance an
+explicit "Declare Scope fibration_scope.". [undeclared-scope,deprecated]
+File "./MiniHoTT_paths.v", line 104, characters 0-37:
+Warning: Declaring a scope implicitly is deprecated; use in advance an
+explicit "Declare Scope trunc_scope.". [undeclared-scope,deprecated]
+File "./MiniHoTT_paths.v", line 140, characters 0-21:
+Warning: Adding and removing hints in the core database implicitly is
+deprecated. Please specify a hint database.
+[implicit-core-hint-db,deprecated]
+File "./MiniHoTT_paths.v", line 143, characters 0-52:
+Warning: Notation "_ = _ :> _" was already used in scope type_scope.
+[notation-overridden,parsing]
+File "./MiniHoTT_paths.v", line 144, characters 0-45:
+Warning: Notation "_ = _" was already used in scope type_scope.
+[notation-overridden,parsing]
+MiniHoTT_paths.vo (real: 3.65, user: 3.42, sys: 0.20, mem: 350716 ko)
+COQC translation_utils.v
+MiniHoTT.vo (real: 4.94, user: 4.41, sys: 0.50, mem: 348856 ko)
+translation_utils.vo (real: 2.16, user: 1.82, sys: 0.33, mem: 554420 ko)
+COQC param_original.v
+COQC param_cheap_packed.v
+Coq.Init.Datatypes.nat has been translated.
+Coq.Init.Datatypes.list has been translated.
+listᵗ : forall A : TYPE, list A.1 -> Type
+ : forall A : TYPE, list A.1 -> Type
+nilᵗ : forall A : TYPE, listᵗ A []
+ : forall A : TYPE, listᵗ A []
+consᵗ
+:
+forall (A : TYPE) (x : El A) (lH : ∃ l : list A.1, listᵗ A l),
+listᵗ A (x.1 :: lH.1)
+ : forall (A : TYPE) (x : El A) (lH : ∃ l : list A.1, listᵗ A l),
+ listᵗ A (x.1 :: lH.1)
+param_cheap_packed.vo (real: 1.82, user: 1.49, sys: 0.32, mem: 553352 ko)
+COQC param_generous_packed.v
+"T has been translated as Tᵗ"
+"tm has been translated as tmᵗ"
+Coq.Init.Datatypes.nat has been translated.
+Coq.Init.Datatypes.bool has been translated.
+"pred has been translated as predᵗ"
+"ID has been translated as IDᵗ"
+"toto has been translated as totoᵗ"
+"my_id has been translated as my_idᵗ"
+"~~~~~~~~~~~~~~~~~~"
+"Translating Coq.Init.Logic.eq"
+"Coq.Init.Logic.eq has been translated."
+"Translating MetaCoq.Translations.param_original.Id2.ID"
+"ID has been translated as IDᵗ"
+"~~~~~~~~~~~~~~~~~~"
+"Translating Coq.Init.Logic.eq"
+"Coq.Init.Logic.eq was already translated"
+"Translating Coq.Init.Logic.eq_trans"
+"eq_trans has been translated as eq_transᵗ"
+"Translating Coq.Init.Logic.eq_sym"
+"eq_sym has been translated as eq_symᵗ"
+"Translating MetaCoq.Translations.param_original.Id2.ID"
+"MetaCoq.Translations.param_original.Id2.ID was already translated"
+"Translating MetaCoq.Translations.param_original.Id2.myf"
+"myf has been translated as myfᵗ"
+Coq.Vectors.VectorDef.t has been translated.
+Coq.Arith.Even.even has been translated.
+File "./param_generous_packed.v", line 7, characters 0-30:
+Warning: Notation "exists _ .. _ , _" was already used in scope type_scope.
+[notation-overridden,parsing]
+File "./param_generous_packed.v", line 7, characters 0-30:
+Warning: Notation "{ _ : _ & _ }" was already used in scope type_scope.
+[notation-overridden,parsing]
+File "./param_generous_packed.v", line 7, characters 0-30:
+Warning: Notation "_ = _ :> _" was already used in scope type_scope.
+[notation-overridden,parsing]
+File "./param_generous_packed.v", line 7, characters 0-30:
+Warning: Notation "_ = _" was already used in scope type_scope.
+[notation-overridden,parsing]
+Coq.Init.Datatypes.list has been translated.
+"rev_type has been translated as rev_typeᵗ"
+Fresh universe MetaCoq.Translations.param_generous_packed.603 was added to the context.
+Fresh universe MetaCoq.Translations.param_generous_packed.604 was added to the context.
+Fresh universe MetaCoq.Translations.param_generous_packed.605 was added to the context.
+"Ty has been translated as Tyᵗ"
+Tyᵗ : El Tyᵗ
+ : El Tyᵗ
+File "./param_original.v", line 261, characters 0-24:
+Warning: Notation "exists _ .. _ , _" was already used in scope type_scope.
+[notation-overridden,parsing]
+File "./param_original.v", line 261, characters 0-24:
+Warning: Notation "{ _ : _ & _ }" was already used in scope type_scope.
+[notation-overridden,parsing]
+File "./param_original.v", line 261, characters 0-24:
+Warning: Notation "_ = _ :> _" was already used in scope type_scope.
+[notation-overridden,parsing]
+File "./param_original.v", line 261, characters 0-24:
+Warning: Notation "_ = _" was already used in scope type_scope.
+[notation-overridden,parsing]
+"sigT has been translated as sigTᵗ"
+"~~~~~~~~~~~~~~~~~~"
+"Translating Coq.Init.Logic.eq"
+"Coq.Init.Logic.eq has been translated."
+"Translating MetaCoq.Translations.MiniHoTT.paths"
+"paths has been translated as pathsᵗ"
+"existT has been translated as existTᵗ"
+"Translating MetaCoq.Translations.param_original.Axioms.UIP"
+"UIP has been translated as UIPᵗ"
+"wFunext has been translated as wFunextᵗ"
+"~~~~~~~~~~~~~~~~~~"
+"Translating Coq.Init.Logic.eq"
+"Coq.Init.Logic.eq was already translated"
+"Translating MetaCoq.Translations.MiniHoTT.paths"
+"MetaCoq.Translations.MiniHoTT.paths was already translated"
+"Translating MetaCoq.Translations.MiniHoTT.Sect"
+"Sect has been translated as Sectᵗ"
+"Translating MetaCoq.Translations.MiniHoTT.idpath"
+"idpath has been translated as idpathᵗ"
+"Translating MetaCoq.Translations.MiniHoTT.paths_ind"
+"paths_ind has been translated as paths_indᵗ"
+"Translating MetaCoq.Translations.MiniHoTT.transport"
+"transport has been translated as transportᵗ"
+Finished transaction in 1.071 secs (0.906u,0.16s) (successful)
+"Translating MetaCoq.Translations.MiniHoTT.ap"
+"ap has been translated as apᵗ"
+"sigT_ind has been translated as sigT_indᵗ"
+"Translating MetaCoq.Translations.MiniHoTT.IsEquiv"
+"MetaCoq.Translations.MiniHoTT.IsEquiv has been translated."
+"paths has been translated as pathsᵗ"
+"idpath has been translated as idpathᵗ"
+"Translating MetaCoq.Translations.MiniHoTT.Equiv"
+"MetaCoq.Translations.MiniHoTT.Equiv has been translated."
+"paths_ind has been translated as paths_indᵗ"
+"Translating MetaCoq.Translations.param_original.Axioms.wUnivalence"
+"wUnivalence has been translated as wUnivalenceᵗ"
+Fresh universe MetaCoq.Translations.param_generous_packed.696 was added to the context.
+Fresh universe MetaCoq.Translations.param_generous_packed.697 was added to the context.
+Fresh universe MetaCoq.Translations.param_generous_packed.698 was added to the context.
+Fresh universe MetaCoq.Translations.param_generous_packed.699 was added to the context.
+Fresh universe MetaCoq.Translations.param_generous_packed.700 was added to the context.
+Fresh universe MetaCoq.Translations.param_generous_packed.701 was added to the context.
+Fresh universe MetaCoq.Translations.param_generous_packed.702 was added to the context.
+Fresh universe MetaCoq.Translations.param_generous_packed.703 was added to the context.
+Fresh universe MetaCoq.Translations.param_generous_packed.704 was added to the context.
+Fresh universe MetaCoq.Translations.param_generous_packed.705 was added to the context.
+Fresh universe MetaCoq.Translations.param_generous_packed.706 was added to the context.
+Fresh universe MetaCoq.Translations.param_generous_packed.707 was added to the context.
+Fresh universe MetaCoq.Translations.param_generous_packed.708 was added to the context.
+Fresh universe MetaCoq.Translations.param_generous_packed.709 was added to the context.
+Fresh universe MetaCoq.Translations.param_generous_packed.710 was added to the context.
+Fresh universe MetaCoq.Translations.param_generous_packed.711 was added to the context.
+Fresh universe MetaCoq.Translations.param_generous_packed.712 was added to the context.
+Fresh universe MetaCoq.Translations.param_generous_packed.713 was added to the context.
+Fresh universe MetaCoq.Translations.param_generous_packed.714 was added to the context.
+Fresh universe MetaCoq.Translations.param_generous_packed.715 was added to the context.
+Fresh universe MetaCoq.Translations.param_generous_packed.716 was added to the context.
+"Funext has been translated as Funextᵗ"
+Fresh universe MetaCoq.Translations.param_generous_packed.728 was added to the context.
+Fresh universe MetaCoq.Translations.param_generous_packed.729 was added to the context.
+Fresh universe MetaCoq.Translations.param_generous_packed.730 was added to the context.
+"FALSE has been translated as FALSEᵗ"
+"~~~~~~~~~~~~~~~~~~"
+"Translating Coq.Init.Logic.eq"
+"Coq.Init.Logic.eq was already translated"
+"Translating MetaCoq.Translations.MiniHoTT.paths"
+"MetaCoq.Translations.MiniHoTT.paths was already translated"
+"Translating MetaCoq.Translations.MiniHoTT.Sect"
+"MetaCoq.Translations.MiniHoTT.Sect was already translated"
+"Translating MetaCoq.Translations.MiniHoTT.idpath"
+"MetaCoq.Translations.MiniHoTT.idpath was already translated"
+"Translating MetaCoq.Translations.MiniHoTT.paths_ind"
+"MetaCoq.Translations.MiniHoTT.paths_ind was already translated"
+"Translating MetaCoq.Translations.MiniHoTT.transport"
+"MetaCoq.Translations.MiniHoTT.transport was already translated"
+"Translating MetaCoq.Translations.MiniHoTT.ap"
+"MetaCoq.Translations.MiniHoTT.ap was already translated"
+"UIP has been translated as UIPᵗ"
+"Translating MetaCoq.Translations.MiniHoTT.IsEquiv"
+"MetaCoq.Translations.MiniHoTT.IsEquiv was already translated"
+"Translating MetaCoq.Translations.param_original.Axioms.coe"
+"coe has been translated as coeᵗ"
+"False has been translated as Falseᵗ"
+"Translating MetaCoq.Translations.param_original.Axioms.Univalence'"
+"Univalence' has been translated as Univalence'ᵗ"
+"~~~~~~~~~~~~~~~~~~"
+"Translating Coq.Init.Logic.eq"
+"Coq.Init.Logic.eq was already translated"
+"Translating MetaCoq.Translations.MiniHoTT.paths"
+"MetaCoq.Translations.MiniHoTT.paths was already translated"
+"Translating MetaCoq.Translations.MiniHoTT.Sect"
+"MetaCoq.Translations.MiniHoTT.Sect was already translated"
+"Translating MetaCoq.Translations.MiniHoTT.idpath"
+"MetaCoq.Translations.MiniHoTT.idpath was already translated"
+"Translating MetaCoq.Translations.MiniHoTT.paths_ind"
+"MetaCoq.Translations.MiniHoTT.paths_ind was already translated"
+"Translating MetaCoq.Translations.MiniHoTT.transport"
+"MetaCoq.Translations.MiniHoTT.transport was already translated"
+"Translating MetaCoq.Translations.MiniHoTT.ap"
+"MetaCoq.Translations.MiniHoTT.ap was already translated"
+"Translating MetaCoq.Translations.MiniHoTT.IsEquiv"
+"MetaCoq.Translations.MiniHoTT.IsEquiv was already translated"
+"Translating MetaCoq.Translations.param_original.Axioms.coe"
+"MetaCoq.Translations.param_original.Axioms.coe was already translated"
+"Translating MetaCoq.Translations.param_original.Axioms.Univalence'"
+"MetaCoq.Translations.param_original.Axioms.Univalence' was already translated"
+"Translating MetaCoq.Translations.MiniHoTT.Equiv"
+"MetaCoq.Translations.MiniHoTT.Equiv was already translated"
+"Translating MetaCoq.Translations.MiniHoTT.equiv_fun"
+"equiv_fun has been translated as equiv_funᵗ"
+Fresh universe MetaCoq.Translations.param_generous_packed.764 was added to the context.
+Fresh universe MetaCoq.Translations.param_generous_packed.765 was added to the context.
+Fresh universe MetaCoq.Translations.param_generous_packed.766 was added to the context.
+Fresh universe MetaCoq.Translations.param_generous_packed.767 was added to the context.
+Fresh universe MetaCoq.Translations.param_generous_packed.768 was added to the context.
+Fresh universe MetaCoq.Translations.param_generous_packed.769 was added to the context.
+Fresh universe MetaCoq.Translations.param_generous_packed.770 was added to the context.
+Fresh universe MetaCoq.Translations.param_generous_packed.771 was added to the context.
+Fresh universe MetaCoq.Translations.param_generous_packed.772 was added to the context.
+Fresh universe MetaCoq.Translations.param_generous_packed.773 was added to the context.
+Fresh universe MetaCoq.Translations.param_generous_packed.774 was added to the context.
+Fresh universe MetaCoq.Translations.param_generous_packed.775 was added to the context.
+Fresh universe MetaCoq.Translations.param_generous_packed.776 was added to the context.
+Fresh universe MetaCoq.Translations.param_generous_packed.777 was added to the context.
+Fresh universe MetaCoq.Translations.param_generous_packed.778 was added to the context.
+Fresh universe MetaCoq.Translations.param_generous_packed.779 was added to the context.
+Fresh universe MetaCoq.Translations.param_generous_packed.780 was added to the context.
+Fresh universe MetaCoq.Translations.param_generous_packed.781 was added to the context.
+Fresh universe MetaCoq.Translations.param_generous_packed.782 was added to the context.
+Fresh universe MetaCoq.Translations.param_generous_packed.783 was added to the context.
+Fresh universe MetaCoq.Translations.param_generous_packed.784 was added to the context.
+Fresh universe MetaCoq.Translations.param_generous_packed.785 was added to the context.
+Fresh universe MetaCoq.Translations.param_generous_packed.786 was added to the context.
+Fresh universe MetaCoq.Translations.param_generous_packed.787 was added to the context.
+Fresh universe MetaCoq.Translations.param_generous_packed.788 was added to the context.
+Fresh universe MetaCoq.Translations.param_generous_packed.789 was added to the context.
+Fresh universe MetaCoq.Translations.param_generous_packed.790 was added to the context.
+Fresh universe MetaCoq.Translations.param_generous_packed.791 was added to the context.
+Fresh universe MetaCoq.Translations.param_generous_packed.792 was added to the context.
+Fresh universe MetaCoq.Translations.param_generous_packed.793 was added to the context.
+Fresh universe MetaCoq.Translations.param_generous_packed.794 was added to the context.
+Fresh universe MetaCoq.Translations.param_generous_packed.795 was added to the context.
+Fresh universe MetaCoq.Translations.param_generous_packed.796 was added to the context.
+Fresh universe MetaCoq.Translations.param_generous_packed.797 was added to the context.
+Fresh universe MetaCoq.Translations.param_generous_packed.798 was added to the context.
+Fresh universe MetaCoq.Translations.param_generous_packed.799 was added to the context.
+Fresh universe MetaCoq.Translations.param_generous_packed.800 was added to the context.
+Fresh universe MetaCoq.Translations.param_generous_packed.801 was added to the context.
+Fresh universe MetaCoq.Translations.param_generous_packed.802 was added to the context.
+Fresh universe MetaCoq.Translations.param_generous_packed.803 was added to the context.
+Fresh universe MetaCoq.Translations.param_generous_packed.804 was added to the context.
+Fresh universe MetaCoq.Translations.param_generous_packed.805 was added to the context.
+Fresh universe MetaCoq.Translations.param_generous_packed.806 was added to the context.
+Fresh universe MetaCoq.Translations.param_generous_packed.807 was added to the context.
+Fresh universe MetaCoq.Translations.param_generous_packed.808 was added to the context.
+Fresh universe MetaCoq.Translations.param_generous_packed.809 was added to the context.
+Fresh universe MetaCoq.Translations.param_generous_packed.810 was added to the context.
+"equiv has been translated as equivᵗ"
+"Translating MetaCoq.Translations.MiniHoTT.isequiv_idmap"
+"isequiv_idmap has been translated as isequiv_idmapᵗ"
+param_generous_packed.vo (real: 9.61, user: 8.61, sys: 0.95, mem: 892080 ko)
+COQC times_bool_fun.v
+"Translating MetaCoq.Translations.MiniHoTT.equiv_idmap"
+"equiv_idmap has been translated as equiv_idmapᵗ"
+File "./times_bool_fun.v", line 2, characters 0-68:
+Warning: Notation "exists _ .. _ , _" was already used in scope type_scope.
+[notation-overridden,parsing]
+File "./times_bool_fun.v", line 2, characters 0-68:
+Warning: Notation "{ _ : _ & _ }" was already used in scope type_scope.
+[notation-overridden,parsing]
+File "./times_bool_fun.v", line 2, characters 0-68:
+Warning: Notation "_ = _ :> _" was already used in scope type_scope.
+[notation-overridden,parsing]
+File "./times_bool_fun.v", line 2, characters 0-68:
+Warning: Notation "_ = _" was already used in scope type_scope.
+[notation-overridden,parsing]
+File "./times_bool_fun.v", line 15, characters 0-48:
+Warning: Declaring a scope implicitly is deprecated; use in advance an
+explicit "Declare Scope prod_scope.". [undeclared-scope,deprecated]
+"~~~~~~~~~~~~~~~~~~"
+"Translating Coq.Init.Logic.eq"
+"Translating MetaCoq.Translations.param_original.Axioms.equiv_paths"
+"Coq.Init.Logic.eq has been translated."
+"Translating MetaCoq.Translations.MiniHoTT.paths"
+"paths has been translated as pathsᵗ"
+"Translating Coq.Init.Logic.False"
+"Coq.Init.Logic.False has been translated."
+"Translating MetaCoq.Translations.times_bool_fun.NotFunext"
+"NotFunext has been translated as NotFunextᵗ"
+"equiv_paths has been translated as equiv_pathsᵗ"
+"notFunext has been translated as notFunextᵗ"
+"notη has been translated as notηᵗ"
+"~~~~~~~~~~~~~~~~~~"
+"Translating Coq.Init.Logic.eq"
+"Coq.Init.Logic.eq was already translated"
+"Translating MetaCoq.Translations.MiniHoTT.paths"
+"MetaCoq.Translations.MiniHoTT.paths was already translated"
+"Translating MetaCoq.Translations.times_bool_fun.UIP"
+"UIP has been translated as UIPᵗ"
+"~~~~~~~~~~~~~~~~~~"
+"Translating Coq.Init.Logic.eq"
+"Coq.Init.Logic.eq was already translated"
+"Translating MetaCoq.Translations.MiniHoTT.paths"
+"MetaCoq.Translations.MiniHoTT.paths was already translated"
+"Translating MetaCoq.Translations.times_bool_fun.wFunext"
+"wFunext has been translated as wFunextᵗ"
+"Translating Coq.Init.Logic.False"
+"Coq.Init.Logic.False was already translated"
+"Translating MetaCoq.Translations.param_original.Axioms.Univalence"
+"notwFunext has been translated as notwFunextᵗ"
+"Univalence has been translated as Univalenceᵗ"
+"idpath has been translated as idpathᵗ"
+"paths_ind has been translated as paths_indᵗ"
+"Translating MetaCoq.Translations.param_original.Axioms.UU'"
+"~~~~~~~~~~~~~~~~~~"
+"Translating Coq.Init.Logic.eq"
+"Coq.Init.Logic.eq was already translated"
+"Translating MetaCoq.Translations.MiniHoTT.paths"
+"MetaCoq.Translations.MiniHoTT.paths was already translated"
+"Translating MetaCoq.Translations.MiniHoTT.Sect"
+Fresh universe MetaCoq.Translations.times_bool_fun.576 was added to the context.
+Fresh universe MetaCoq.Translations.times_bool_fun.577 was added to the context.
+Fresh universe MetaCoq.Translations.times_bool_fun.578 was added to the context.
+Fresh universe MetaCoq.Translations.times_bool_fun.579 was added to the context.
+"Sect has been translated as Sectᵗ"
+"Translating MetaCoq.Translations.MiniHoTT.idpath"
+"MetaCoq.Translations.MiniHoTT.idpath was already translated"
+"UU' has been translated as UU'ᵗ"
+"Translating MetaCoq.Translations.MiniHoTT.paths_ind"
+"MetaCoq.Translations.MiniHoTT.paths_ind was already translated"
+"Translating MetaCoq.Translations.MiniHoTT.transport"
+"transport has been translated as transportᵗ"
+"Translating MetaCoq.Translations.MiniHoTT.ap"
+"ap has been translated as apᵗ"
+"Translating MetaCoq.Translations.MiniHoTT.IsEquiv"
+"MetaCoq.Translations.MiniHoTT.IsEquiv has been translated."
+"Translating MetaCoq.Translations.MiniHoTT.Equiv"
+param_original.vo (real: 18.98, user: 17.91, sys: 0.96, mem: 741808 ko)
+COQC param_binary.v
+"MetaCoq.Translations.MiniHoTT.Equiv has been translated."
+File "./param_binary.v", line 207, characters 23-24:
+Warning: Ignoring implicit binder declaration in unexpected position.
+[unexpected-implicit-declaration,syntax]
+File "./param_binary.v", line 207, characters 25-26:
+Warning: Ignoring implicit binder declaration in unexpected position.
+[unexpected-implicit-declaration,syntax]
+Coq.Init.Datatypes.nat has been translated.
+Coq.Init.Datatypes.bool has been translated.
+Coq.Init.Datatypes.list has been translated.
+"HD has been translated as HDᵗ"
+"MAP has been translated as MAPᵗ"
+param_binary.vo (real: 2.24, user: 1.93, sys: 0.29, mem: 556444 ko)
+COQC standard_model.v
+"Translating MetaCoq.Translations.times_bool_fun.wUnivalence"
+"wUnivalence has been translated as wUnivalenceᵗ"
+check_guarded: true
+check_positive: true
+check_universes: true
+cumulative sprop: false
+definitional uip: false
+"toto has been translated as totoᵗ"
+totoᵗ : unit -> (forall A : Type, A -> A) -> Type -> Type
+ : unit -> (forall A : Type, A -> A) -> Type -> Type
+"FALSE has been translated as FALSEᵗ"
+"toto"
+"a has been translated as aᵗ"
+"T has been translated as Tᵗ"
+"tm has been translated as tmᵗ"
+standard_model.vo (real: 1.63, user: 1.34, sys: 0.28, mem: 549492 ko)
+Fresh universe MetaCoq.Translations.times_bool_fun.631 was added to the context.
+Fresh universe MetaCoq.Translations.times_bool_fun.632 was added to the context.
+Fresh universe MetaCoq.Translations.times_bool_fun.633 was added to the context.
+"isequiv_idmap has been translated as isequiv_idmapᵗ"
+Fresh universe MetaCoq.Translations.times_bool_fun.635 was added to the context.
+Fresh universe MetaCoq.Translations.times_bool_fun.636 was added to the context.
+Fresh universe MetaCoq.Translations.times_bool_fun.637 was added to the context.
+Fresh universe MetaCoq.Translations.times_bool_fun.638 was added to the context.
+Fresh universe MetaCoq.Translations.times_bool_fun.639 was added to the context.
+"equiv_idmap has been translated as equiv_idmapᵗ"
+Fresh universe MetaCoq.Translations.times_bool_fun.641 was added to the context.
+Fresh universe MetaCoq.Translations.times_bool_fun.642 was added to the context.
+Fresh universe MetaCoq.Translations.times_bool_fun.643 was added to the context.
+Fresh universe MetaCoq.Translations.times_bool_fun.644 was added to the context.
+Fresh universe MetaCoq.Translations.times_bool_fun.645 was added to the context.
+Fresh universe MetaCoq.Translations.times_bool_fun.646 was added to the context.
+Fresh universe MetaCoq.Translations.times_bool_fun.647 was added to the context.
+Fresh universe MetaCoq.Translations.times_bool_fun.648 was added to the context.
+Fresh universe MetaCoq.Translations.times_bool_fun.649 was added to the context.
+"UA has been translated as UAᵗ"
+"notUA has been translated as notUAᵗ"
+times_bool_fun.vo (real: 27.19, user: 25.86, sys: 1.20, mem: 857128 ko)
+COQC times_bool_fun2.v
+File "./times_bool_fun2.v", line 4, characters 0-83:
+Warning: Notation "exists _ .. _ , _" was already used in scope type_scope.
+[notation-overridden,parsing]
+File "./times_bool_fun2.v", line 4, characters 0-83:
+Warning: Notation "{ _ : _ & _ }" was already used in scope type_scope.
+[notation-overridden,parsing]
+File "./times_bool_fun2.v", line 4, characters 0-83:
+Warning: Notation "_ = _ :> _" was already used in scope type_scope.
+[notation-overridden,parsing]
+File "./times_bool_fun2.v", line 4, characters 0-83:
+Warning: Notation "_ = _" was already used in scope type_scope.
+[notation-overridden,parsing]
+"paths has been translated as pathsᵗ"
+"idpath has been translated as idpathᵗ"
+"paths_ind has been translated as paths_indᵗ"
+"transport has been translated as transportᵗ"
+Fresh universe MetaCoq.Translations.times_bool_fun2.269 was added to the context.
+"sigT has been translated as sigTᵗ"
+"projT1 has been translated as projT1ᵗ"
+"projT2 has been translated as projT2ᵗ"
+"existT has been translated as existTᵗ"
+Fresh universe MetaCoq.Translations.times_bool_fun2.377 was added to the context.
+Fresh universe MetaCoq.Translations.times_bool_fun2.378 was added to the context.
+Fresh universe MetaCoq.Translations.times_bool_fun2.379 was added to the context.
+Fresh universe MetaCoq.Translations.times_bool_fun2.380 was added to the context.
+Fresh universe MetaCoq.Translations.times_bool_fun2.381 was added to the context.
+"isequiv has been translated as isequivᵗ"
+Fresh universe MetaCoq.Translations.times_bool_fun2.383 was added to the context.
+Fresh universe MetaCoq.Translations.times_bool_fun2.384 was added to the context.
+Fresh universe MetaCoq.Translations.times_bool_fun2.385 was added to the context.
+"equiv has been translated as equivᵗ"
+"eq has been translated as eqᵗ"
+"inverse has been translated as inverseᵗ"
+Fresh universe MetaCoq.Translations.times_bool_fun2.416 was added to the context.
+Fresh universe MetaCoq.Translations.times_bool_fun2.417 was added to the context.
+"contr has been translated as contrᵗ"
+"weakFunext has been translated as weakFunextᵗ"
+times_bool_fun2.vo (real: 7.77, user: 7.23, sys: 0.50, mem: 614752 ko)
+ Time | Peak Mem | File Name
+-----------------------------------------------
+1m14.87s | 892080 ko | Total Time / Peak Mem
+-----------------------------------------------
+0m25.86s | 857128 ko | times_bool_fun.vo
+0m17.91s | 741808 ko | param_original.vo
+0m08.61s | 892080 ko | param_generous_packed.vo
+0m07.23s | 614752 ko | times_bool_fun2.vo
+0m04.41s | 348856 ko | MiniHoTT.vo
+0m03.42s | 350716 ko | MiniHoTT_paths.vo
+0m01.93s | 556444 ko | param_binary.vo
+0m01.82s | 554420 ko | translation_utils.vo
+0m01.49s | 553352 ko | param_cheap_packed.vo
+0m01.34s | 549492 ko | standard_model.vo
+0m00.86s | 500064 ko | sigma.vo
+make[3]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/translations'
+make -f Makefile.coq install
+make[3]: Entering directory '/builds/coq/coq/_build_ci/metacoq/translations'
+INSTALL sigma.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Translations/
+INSTALL MiniHoTT.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Translations/
+INSTALL MiniHoTT_paths.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Translations/
+INSTALL translation_utils.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Translations/
+INSTALL param_original.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Translations/
+INSTALL param_cheap_packed.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Translations/
+INSTALL param_generous_packed.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Translations/
+INSTALL times_bool_fun.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Translations/
+INSTALL times_bool_fun2.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Translations/
+INSTALL param_binary.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Translations/
+INSTALL standard_model.vo /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Translations/
+INSTALL sigma.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Translations/
+INSTALL MiniHoTT.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Translations/
+INSTALL MiniHoTT_paths.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Translations/
+INSTALL translation_utils.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Translations/
+INSTALL param_original.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Translations/
+INSTALL param_cheap_packed.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Translations/
+INSTALL param_generous_packed.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Translations/
+INSTALL times_bool_fun.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Translations/
+INSTALL times_bool_fun2.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Translations/
+INSTALL param_binary.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Translations/
+INSTALL standard_model.v /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Translations/
+INSTALL sigma.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Translations/
+INSTALL MiniHoTT.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Translations/
+INSTALL MiniHoTT_paths.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Translations/
+INSTALL translation_utils.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Translations/
+INSTALL param_original.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Translations/
+INSTALL param_cheap_packed.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Translations/
+INSTALL param_generous_packed.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Translations/
+INSTALL times_bool_fun.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Translations/
+INSTALL times_bool_fun2.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Translations/
+INSTALL param_binary.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Translations/
+INSTALL standard_model.glob /builds/coq/coq/_install_ci/lib/coq//user-contrib/MetaCoq/Translations/
+make[4]: Entering directory '/builds/coq/coq/_build_ci/metacoq/translations'
+make[4]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/translations'
+make[3]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/translations'
+make[2]: Leaving directory '/builds/coq/coq/_build_ci/metacoq/translations'
+make[1]: Leaving directory '/builds/coq/coq/_build_ci/metacoq'
+Aggregating timing log...
+Traceback (most recent call last):
+ File "./tools/make-one-time-file.py", line 13, in <module>
+ stats_dict = get_times_and_mems(args.FILE_NAME, use_real=args.real, include_mem=args.include_mem)
+ File "/builds/coq/coq/tools/TimeFileMaker.py", line 161, in get_times_and_mems
+ return merge_dicts(get_times_of_lines(lines, use_real=use_real),
+ File "/builds/coq/coq/tools/TimeFileMaker.py", line 156, in get_times_of_lines
+ return dict((name, {TIME_KEY:reformat_time_string(time)}) for name, time in times)
+ File "/builds/coq/coq/tools/TimeFileMaker.py", line 156, in <genexpr>
+ return dict((name, {TIME_KEY:reformat_time_string(time)}) for name, time in times)
+ File "/builds/coq/coq/tools/TimeFileMaker.py", line 104, in reformat_time_string
+ seconds, milliseconds = time.split('.')
+ValueError: too many values to unpack
+Makefile.ci:90: recipe for target 'ci-metacoq' failed
+make: *** [ci-metacoq] Error 1
+section_end:1598965182:build_script section_start:1598965182:after_script section_end:1598965184:after_script section_start:1598965184:upload_artifacts_on_failure section_end:1598965189:upload_artifacts_on_failure ERROR: Job failed: exit code 1
+ \ No newline at end of file
diff --git a/test-suite/coq-makefile/timing/precomputed-time-tests/run.sh b/test-suite/coq-makefile/timing/precomputed-time-tests/run.sh
index 123b272a69..f6c283d53c 100755
--- a/test-suite/coq-makefile/timing/precomputed-time-tests/run.sh
+++ b/test-suite/coq-makefile/timing/precomputed-time-tests/run.sh
@@ -13,3 +13,4 @@ export COQLIB
./004-per-file-fuzz/run.sh
./005-correct-diff-sorting-order-mem/run.sh
./006-zero-before/run.sh
+./007-no-output-sync/run.sh
diff --git a/tools/TimeFileMaker.py b/tools/TimeFileMaker.py
index 12462726e5..72c7465b13 100644
--- a/tools/TimeFileMaker.py
+++ b/tools/TimeFileMaker.py
@@ -101,7 +101,12 @@ def add_output_file_name(parser): return add_file_name_gen(parser, 'OUTPUT_', 'f
def reformat_time_string(time):
- seconds, milliseconds = time.split('.')
+ try:
+ seconds, milliseconds = time.split('.')
+ except ValueError:
+ print('WARNING: Invalid time string: not the right number of dots (.); expected one: %s' % repr(time), file=sys.stderr)
+ seconds, milliseconds = (time + '.').split('.')[:2]
+ if seconds == '': seconds = 0
seconds = int(seconds)
minutes, seconds = divmod(seconds, 60)
return '%dm%02d.%ss' % (minutes, seconds, milliseconds)