티스토리 뷰
Visual Studio Code 에서 Python launch.json
"version": "0.2.0",
"configurations": [
{
"name": "Python: Current File",
"type": "python",
"request": "launch",
"stopOnEntry": false,
"pythonPath": "${config:python.pythonPath}",
"program": "${file}",
"cwd": "${workspaceFolder}",
"env": {},
"envFile": "${workspaceFolder}/.env",
"debugOptions": [
"RedirectOutput"
]
},
디버깅만 하면 오류가 발생했다.
"stopOnEntry": true 일 경우 Program Start Point에서 Stop
"stopOnEntry": false 일 경우 Debug Point 에서 Stop
그런데 true 로 되어있으면 내가 생각한 것과 다른 부분에서 Debug 가 Stop 해 버린다.
그래도 원인을 찾았으니 다행 ....
'C++ Language > C++' 카테고리의 다른 글
[C++] 전처리 (0) | 2018.12.27 |
---|---|
[C++] 개발툴과 라이브러리 선정 (2) | 2018.12.05 |
[개발자] 프로그램 개발은 언제해야 하는가 ? (0) | 2018.04.17 |
[OpenSSL] Windows 64Bit (0) | 2017.05.28 |
[Windows] File 길이가 길어서 삭제 안될때 (0) | 2015.11.16 |
댓글