I have an lldb command file with the following text:
settings set -- auto-confirm true
breakpoint set --name main
process launch
continue
quit
I'm trying to source a command file with the command:
lldb --source lldb_start_single_step program
However, I'm getting this output:
Executing commands in 'lldb_start_single_step'.
(lldb) settings set -- auto-confirm true
' failed with error: invalid boolean string value: 'true ttings set -- auto-confirm true
Current executable set to 'program' (x86_64).
I've tried searching for a solution but I can't seem to find anything, as lldb still doesn't seem to have much documentation yet.