VSC의 Extesions에서 `codelldb`를 검색한 후 설치합니다.
launch.json 파일을 적당히 수정합니다.
{
"version": "0.2.0",
"configurations": [
{
"name": "macOS lldb",
"type": "lldb",
"request": "launch",
"program": "${workspaceFolder}/build/run",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}/build/",
"environment": [],
"externalConsole": false,
"MIMode": "lldb"
}
]
}
'macOS' 카테고리의 다른 글
OBS Studio Apple Silicon 맥북 설치기 (0) | 2022.11.11 |
---|---|
macOS xcode Command Line Tools (0) | 2022.11.06 |
macOS C++ 빌드 및 실행 (0) | 2022.11.06 |
macOS 컴파일러 비교 (1) | 2022.11.06 |
My Screen Brush (맥 화면 필기앱) (0) | 2022.11.06 |