As Jim Inham said above, you currently cannot save breakpoints in lldb. However, there is work. Lldb commands can be loaded from a batch file as follows:
lldb -S <path_to_command_file>
You can get this in your batch file:
file <path_to_binary> breakpoint set --file file0.cc --line 22 breakpoint set --file file1.cc --line 237
The above batch file will load the binary and set breakpoints when lldb starts.
maxel source share