package frama-c

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Source file options.ml

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
(**************************************************************************)
(*                                                                        *)
(*  This file is part of Frama-C.                                         *)
(*                                                                        *)
(*  Copyright (C) 2007-2024                                               *)
(*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
(*         alternatives)                                                  *)
(*                                                                        *)
(*  you can redistribute it and/or modify it under the terms of the GNU   *)
(*  Lesser General Public License as published by the Free Software       *)
(*  Foundation, version 2.1.                                              *)
(*                                                                        *)
(*  It is distributed in the hope that it will be useful,                 *)
(*  but WITHOUT ANY WARRANTY; without even the implied warranty of        *)
(*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *)
(*  GNU Lesser General Public License for more details.                   *)
(*                                                                        *)
(*  See the GNU Lesser General Public License version 2.1                 *)
(*  for more details (enclosed in the file licenses/LGPLv2.1).            *)
(*                                                                        *)
(**************************************************************************)

module Self = Plugin.Register
    (struct
      let name = "Variadic"
      let shortname = "variadic"
      let help = "Variadic functions translation"
    end)

module Enabled = Self.True
    (struct
      let option_name = "-variadic-translation"
      let help = "translate variadic functions and calls to semantic \
                  equivalents with only a fixed list of formal parameters"
    end)

module Strict = Self.True
    (struct
      let option_name = "-variadic-strict"
      let help = "display warnings about non-portable implicit casts in the \
                  calls of standard variadic functions, i.e. casts between \
                  distinct integral types which have the same size and \
                  signedness"
    end)

let wkey_libc = Self.register_warn_category "libc"
let wkey_format = Self.register_warn_category "libc:format"
let wkey_libc_framac = Self.register_warn_category "libc:frama-c"
let wkey_prototype = Self.register_warn_category "prototype"
let wkey_typing = Self.register_warn_category "typing"
OCaml

Innovation. Community. Security.