aboutsummaryrefslogtreecommitdiffstats
path: root/debug/DebugInit.ml
diff options
context:
space:
mode:
Diffstat (limited to 'debug/DebugInit.ml')
-rw-r--r--debug/DebugInit.ml8
1 files changed, 5 insertions, 3 deletions
diff --git a/debug/DebugInit.ml b/debug/DebugInit.ml
index 9f99f08c..cfe9a6d4 100644
--- a/debug/DebugInit.ml
+++ b/debug/DebugInit.ml
@@ -36,14 +36,16 @@ let init () =
init_none ()
let gnu_debugging_help =
-" -gdwarf- Generate debug information in DWARF v2 or DWARF v3\n"
+{| -gdwarf-2 Generate debug information in DWARF v2 format
+ -gdwarf-3 Generate debug information in DWARF v3 format
+|}
let debugging_help =
{|Debugging options:
-g Generate debugging information
-g<n> Control generation of debugging information
- (<n>=0: none, <n>=1: only-globals, <n>=2: globals + locals
- without locations, <n>=3: full;)
+ (<n>=0: none, <n>=1: only globals,
+ <n>=2: globals + locals without locations, <n>=3: full)
|}
^ (if Configuration.gnu_toolchain then gnu_debugging_help else "")