File tree 2 files changed +21
-0
lines changed
2 files changed +21
-0
lines changed Original file line number Diff line number Diff line change 3
3
* .vok
4
4
* .vos
5
5
* .glob
6
+ * .timing
7
+ * .prof.json
8
+ * .prof.json.gz
6
9
* .o
7
10
* .a
8
11
* .cmi
Original file line number Diff line number Diff line change @@ -64,6 +64,23 @@ COQCOPTS ?= \
64
64
cparser/Parser.vo : COQCOPTS += -w -deprecated-instance-without-locality
65
65
flocq/IEEE754/Bits.vo : COQCOPTS += -w -opaque-let
66
66
67
+ ifneq (,$(TIMING ) )
68
+ # does this coq version support -time-file ? (Coq >= 8.18)
69
+ ifeq (,$(shell "$(COQBIN)coqc" -time-file /dev/null 2>&1))
70
+ COQCOPTS += -time-file $< .timing
71
+ endif
72
+ endif
73
+
74
+ ifneq (,$(PROFILING ) )
75
+ # does this coq version dupport -profile ? (Coq >= 8.19)
76
+ ifeq (,$(shell "$(COQBIN)coqc" -profile /dev/null 2>&1))
77
+ COQCOPTS += -profile $< .prof.json
78
+ PROFILE_ZIP = gzip -f $< .prof.json
79
+ else
80
+ endif
81
+ endif
82
+ PROFILE_ZIP ?= true
83
+
67
84
COQC ="$(COQBIN ) coqc" -q $(COQINCLUDES ) $(COQCOPTS )
68
85
COQDEP ="$(COQBIN ) coqdep" $(COQINCLUDES )
69
86
COQDOC ="$(COQBIN ) coqdoc"
@@ -262,6 +279,7 @@ latexdoc:
262
279
@rm -f doc/$(*F ) .glob
263
280
@echo " COQC $* .v"
264
281
@$(COQC ) -dump-glob doc/$(*F ) .glob $* .v
282
+ @$(PROFILE_ZIP )
265
283
266
284
% .v : % .vp tools/ndfun
267
285
@rm -f $* .v
You can’t perform that action at this time.
0 commit comments