Release coccinelle-0.2.0rc1
[bpt/coccinelle.git] / flag_cocci.ml
CommitLineData
34e49164
C
1(* the inputs *)
2let show_c = ref false
3let show_cocci = ref false
4
5(* the output *)
6let show_diff = ref true
7
8(* the derived inputs *)
9let show_flow = ref false
10let show_before_fixed_flow = ref false
11
faf9a90c
C
12let show_ctl_tex = ref false
13let show_ctl_text = ref false
34e49164
C
14
15let inline_let_ctl = ref false
16let show_mcodekind_in_ctl = ref false
17
18(* the "underived" outputs *)
34e49164 19let show_binding_in_out = ref false
faf9a90c 20let show_dependencies = ref false
34e49164 21
708f4980
C
22let verbose_cocci = ref true
23
34e49164
C
24let windows = ref false
25
26let popl = ref false
27
708f4980 28let ifdef_to_if = ref true(*false*)
485bce71 29
faf9a90c
C
30type include_options =
31 I_UNSPECIFIED | I_NO_INCLUDES | I_NORMAL_INCLUDES | I_ALL_INCLUDES
32let include_options = ref I_UNSPECIFIED
33
b1b2de81 34let include_path = ref (None : string option)
34e49164
C
35(* if true then when have a #include "../../xx.h", we look also for xx.h in
36 * current directory. This is because of how works extract_c_and_res
37 *)
38
34e49164
C
39let relax_include_path = ref false
40
41let timeout = ref (None : int option)
42
43let worth_trying_opt = ref true