diff options
Diffstat (limited to 'src/synth/elab-debugger.adb')
-rw-r--r-- | src/synth/elab-debugger.adb | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/synth/elab-debugger.adb b/src/synth/elab-debugger.adb index 0f5ecb9dc..66b1fe835 100644 --- a/src/synth/elab-debugger.adb +++ b/src/synth/elab-debugger.adb @@ -560,6 +560,12 @@ package body Elab.Debugger is With_Objs := True; elsif Line (F .. L) = "-R" then Recurse := True; + elsif Line (F .. L) = "-h" then + Put_Line ("options:"); + Put_Line (" -h this help"); + Put_Line (" -v with objects"); + Put_Line (" -R recurses"); + return; else Put_Line ("unknown option: " & Line (F .. L)); return; |