gdb commander, allow to comment arguments

This commit is contained in:
Basile Burg 2021-08-01 12:48:02 +02:00
parent 5c4152c99b
commit 5f3574cde1
2 changed files with 3 additions and 1 deletions

View File

@ -4,6 +4,7 @@
- Halstead metrics: show full function signatures.
- DUB projects: added support for the _syntax_ build type. (#83)
- GDB commander: arguments of the _Debugee Options_ can be temporarily deactivated by prepending `//`.
# v3.9.11

View File

@ -2067,7 +2067,8 @@ begin
else
str += ' ';
for i := 0 to o.arguments.Count-1 do
str += o.arguments[i] + ' ';
if not isStringDisabled(o.arguments[i]) then
str += o.arguments[i] + ' ';
str := fSyms.expand(str);
end;
gdbCommand('-exec-arguments '+ str + '> ' + fOutputName + '< ' + fInputName);