ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • VSCode 디버그 세팅
    Archive/Tips 2024. 4. 12. 19:47

    디버그할 프로젝트 디렉토리와 동등한 위치에 .vscode 디렉토리를 만들고 launch.json 파일을 만든다.

     

    {
      "version": "0.2.0",
      "configurations": [
        {
          "name": "디버그 파일 이름",
          "type": "cppdbg", // 사용할 디버거
          "request": "launch",
          "program": "${workspaceFolder}{테스트할 파일 경로}",
          "args": [],
          "stopAtEntry": false,
          "cwd": "${fileDirname}",
          "environment": [],
          "externalConsole": false,
          "MIMode": "gdb",
          "setupCommands": [
            {
              "description": "Enable pretty-printing for gdb",
              "text": "-enable-pretty-printing",
              "ignoreFailures": true
            },
            {
              "description": "Set Disassembly Flavor to Intel",
              "text": "-gdb-set disassembly-flavor intel",
              "ignoreFailures": true
            }
          ]
        }
      ]
    }

     

    'Archive > Tips' 카테고리의 다른 글

    Pintos 디버그 세팅하기  (0) 2024.04.26
Designed by Tistory.