LLDB(Low-Level Debugger) LLVM은 컴파일 프로젝트이고 그 서브 프로젝트인 LLDB는 디버깅을 맡고 있다. LLDB는 LLVM의 Debugger Component를 개발하는 서브 프로젝트이다. C, C++, Objective-C, Swift를 지원하며, 현재 Xcode의 기본 디버거로 내장되어 있다. 기본 문법 (lldb) command [subcommand] -option "this is argument" 구성요소: Command, Subcommand, Option, Argument 예시: (lldb) breakpoint set --file test.c --line 12 breakpoint(Command)와 set(Subcommand)을 이용하며 --file option을 통해 te..