Skip to content

Commit afb7fd2

Browse files
authored
Build: Support TIMING and PROFILING like coq_makefile (#512)
Should be useful to identify changes more precisely in the Coq benchmarking.
1 parent 8f5fd33 commit afb7fd2

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
*.vok
44
*.vos
55
*.glob
6+
*.timing
7+
*.prof.json
8+
*.prof.json.gz
69
*.o
710
*.a
811
*.cmi

Makefile

+18
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,23 @@ COQCOPTS ?= \
6464
cparser/Parser.vo: COQCOPTS += -w -deprecated-instance-without-locality
6565
flocq/IEEE754/Bits.vo: COQCOPTS += -w -opaque-let
6666

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+
6784
COQC="$(COQBIN)coqc" -q $(COQINCLUDES) $(COQCOPTS)
6885
COQDEP="$(COQBIN)coqdep" $(COQINCLUDES)
6986
COQDOC="$(COQBIN)coqdoc"
@@ -262,6 +279,7 @@ latexdoc:
262279
@rm -f doc/$(*F).glob
263280
@echo "COQC $*.v"
264281
@$(COQC) -dump-glob doc/$(*F).glob $*.v
282+
@$(PROFILE_ZIP)
265283

266284
%.v: %.vp tools/ndfun
267285
@rm -f $*.v

0 commit comments

Comments
 (0)