빨간색 에러들

[VScode] debug global variable / 전역변수 디버깅

vhxpffltm 2021. 11. 1. 21:03

최근 VS code를 통해 시스템에 있는 GCC를 통해 빌드하고 디버깅을 하면서

 

조금씩 이런 환경에 익숙해지고자 한다.

 

(VS 2019만 쓰면 제대로 컴파일과 빌드에 대한 개념이 떨어지니... 필요할때만 간간히)

 

그러다 코드를 디버깅을 하는데 전역 변수로 선언된 값을 확인할 수 없었다....

 

어떻게 확인할까...?

 

https://stackoverflow.com/questions/49956025/seeing-only-local-variables-debugging-c-in-vscode

 

Seeing only local variables debugging C++ in VSCode

I am using Visual Studio Code and when I debug (I am debugging C++ code compiled with Clang) I see only local variables. I do not see any global variables list. How can I see all variables? In this

stackoverflow.com

 

VS code에선 디버깅시 Watch에 확인하고자 하는 전역 변수를 입력해서 확인할 수 있다.

 

단, 값을 수정할 수는 없다...