-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdune
34 lines (31 loc) · 808 Bytes
/
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
(env
(dev
(flags
(; 4: Fragile pattern matching: matching that will remain complete
; even if additional constructors are added to one of the
; variant types matched.
; 40: Constructor or label name used out of scope.
; 42: Disambiguated constructor or label name (compatibility warning)
; 44: Open statement shadows already defined identifier
; 48: Implicit elimination of optional arguments.
; 66: Unused open! (only emitted by PPX)
; 70: Missing .mli file
-w
+A-4-40-42-44-48-66-70
-strict-sequence
; -safe-string
-g
-annot)))
(release
(ocamlopt_flags
(:standard -O3))))
(alias
(name opam)
(deps scrutiny.opam))
;; Cut down version of @all.
(alias
(name everything)
(deps
(alias opam)
(alias install)
(alias doc)))