-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdune
56 lines (48 loc) · 1.56 KB
/
dune
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
; Default flags for all Coq libraries.
(env
(dev (flags :standard -rectypes -w -9-27+40+60 \ -short-paths))
(release (flags :standard -rectypes)
(ocamlopt_flags -O3 -unbox-closures))
(ireport (flags :standard -rectypes -w -9-27-40+60)
(ocamlopt_flags :standard -O3 -unbox-closures -inlining-report)))
; Information about flags for release mode:
;
; In #9665 we tried to add (c_flags -O3) to the release setup,
; unfortunately the resulting VM seems to be slower [5% slower on
; fourcolor, thus we keep the default C flags for now, which seem to
; be -O2.
; The _ profile could help factoring the above, however it doesn't
; seem to work like we'd expect/like:
;
; (_ (flags :standard -rectypes)))
; Rules for coq_dune
(rule
(targets .vfiles.d)
(deps
(source_tree theories)
(source_tree plugins)
(source_tree user-contrib))
(action
(with-stdout-to .vfiles.d
(bash "%{bin:coqdep} -dyndep both -noglob -boot -R theories Coq -Q user-contrib/Ltac2 Ltac2 -I user-contrib/Ltac2 \
`find plugins/ -maxdepth 1 -mindepth 1 -type d -printf '-I %p '` \
`find theories user-contrib -type f -name *.v`"))))
(alias
(name vodeps)
(deps tools/coq_dune.exe .vfiles.d))
; (action (run coq_dune .vfiles.d))))
(install
(section lib)
(package coq)
(files
revision))
(rule
(targets revision)
(deps (:rev-script dev/tools/make_git_revision.sh))
(action (with-stdout-to revision (bash %{rev-script}))))
; Use summary.log as the target
(alias
(name runtest)
(package coqide-server)
(deps test-suite/summary.log))
; (dirs (:standard _build_ci))