We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6657b78 commit d4bde02Copy full SHA for d4bde02
gdbgui/backend.py
@@ -866,9 +866,10 @@ def main():
866
args_group.add_argument(
867
"--args",
868
nargs=argparse.REMAINDER,
869
- help='All remaining args are taken as the binary and arguments to run'
870
- ' in gdb (as with gdb --args).'
871
- ' Example: gdbgui [...] --args ./mybinary myarg -flag1 -flag2',
+ help='Specify the executable file and any arguments. All arguments are'
+ ' taken literally, so if used, this must be the last argument'
+ ' passed to gdbgui.'
872
+ ' Example: gdbgui [...] --args ./mybinary myarg -flag1 -flag2',
873
default=[],
874
)
875
0 commit comments