2014-07-08 2 views

답변

7

Jim Ingham이 말한 것처럼 현재 lldb에 중단 점을 저장할 수 없습니다. 그러나 해결 방법이 있습니다. 다음과 같이 명령 파일에서 명령을 lldb로드 할 수

lldb -S <path_to_command_file> 
당신은 당신의 명령 파일이있을 수 있습니다

: 위의 명령 파일이 바이너리를로드하고 중단 점 lldb 시작을 설정합니다

file <path_to_binary> 
breakpoint set --file file0.cc --line 22 
breakpoint set --file file1.cc --line 237 

.

2

이 현재 불가능합니다.