We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3291049 commit efcb5caCopy full SHA for efcb5ca
debug/DebugInit.ml
@@ -36,14 +36,16 @@ let init () =
36
init_none ()
37
38
let gnu_debugging_help =
39
-" -gdwarf- Generate debug information in DWARF v2 or DWARF v3\n"
+{| -gdwarf-2 Generate debug information in DWARF v2 format
40
+ -gdwarf-3 Generate debug information in DWARF v3 format
41
+|}
42
43
let debugging_help =
44
{|Debugging options:
45
-g Generate debugging information
46
-g<n> Control generation of debugging information
- (<n>=0: none, <n>=1: only-globals, <n>=2: globals + locals
- without locations, <n>=3: full;)
47
+ (<n>=0: none, <n>=1: only globals,
48
+ <n>=2: globals + locals without locations, <n>=3: full)
49
|}
50
^ (if Configuration.gnu_toolchain then gnu_debugging_help else "")
51
0 commit comments