1 vscode의 디버그 창을 시작합니다
Ctrl+Shift+D를 눌러 디버그 창을 엽니다
기본값은 "구성 없음"입니다. "F5"를 클릭하면 GDB 매개변수를 구성하라는 메시지가 표시됩니다(선택 gcc 빌드 및 디버그 활성 파일), 구성 파일 이름은 launch.json입니다(구성 참조 3)
구성이 완료된 후 F5를 다시 누르면 GCC를 구성하라는 메시지가 표시됩니다. "작업 구성"을 선택하고 "C"를 선택합니다. /C++: 활성 파일 빌드 및 디버그", 구성 파일 이름은 task.json(구성 참조 2)
2. GCC 구성
{ // See https://go.microsoft.com/fwlink/?LinkId=733558 // for the documentation about the tasks.json format "version": "2.0.0", "tasks": [ { "type": "shell", "label": "gcc build active file", "command": "/usr/share/mips-gcc-4.6/staging_dir/bin/mips-linux-gcc", "args": [ "-g", "${file}", "-o", "${fileDirname}/${fileBasenameNoExtension}" ], "options": { "cwd": "/usr/bin" }, "problemMatcher": [ "$gcc" ] } ] }
"command": 컴파일 체인의 주소
3. GDB 구성
{ // Use IntelliSense to learn about possible attributes. // Hover to view descriptions of existing attributes. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ { "name": "gcc build and debug active file", "type": "cppdbg", "request": "launch", "miDebuggerServerAddress": "192.168.0.1:10000", "program": "/home/renyinshan/work/p53/apps/cmdlib/test", "args": [], "stopAtEntry": true, "cwd": "/home/renyinshan/work/p53/apps/cmdlib/", "environment": [], "externalConsole": false, "MIMode": "gdb", "setupCommands": [ { "description": "Enable pretty-printing for gdb", "text": "-enable-pretty-printing", "ignoreFailures": true } ], "preLaunchTask": "gcc build active file", "miDebuggerPath": "/home/renyinshan/work/p53/apps/gdb/install/bin/mips-linux-gdb" } ] }
"program": 디버깅할 프로그램의 이름(경로 포함, 문제를 피하기 위한 마지막 절대 경로)
"miDebuggerServerAddress": 서버의 주소 및 포트
"cwd": 디버깅 경로 level
"miDebuggerPath": gdb의 경로
4. GDB 서버 컴파일 및 실행
1)
P53을 컴파일할 때 P59는 컴파일 체인 디렉터리에서 하나를 복사해야 합니다.
scripts/tozedap-router_4g_industry/config.tozedap-router_4g_industry:564:export NO_CPP_LIB=0 GDB运行需要libstdc++.so.6的库,所以需要把此开关打开。
./cool 3 gdb_build 等待完成即可
컴파일된 파일은 다음과 같습니다:
renyinshan@renyinshan:~/work/p53/build$ ls ../apps/gdb/install/* ../apps/gdb/install/bin: mips-linux-gdb mips-linux-gdb-add-index mips-linux-run ../apps/gdb/install/include: gdb ../apps/gdb/install/lib: libmips-linux-sim.a ../apps/gdb/install/share: gdb info locale man renyinshan@renyinshan:~/work/p53/build$ ls ../apps/gdb/installgdbserver/bin/ mips-linux-gdbserver renyinshan@renyinshan:~/work/p53/build$
참고: vscode의 구성에는
install/bin 디렉터리의 mips-linux-gdb가 필요합니다.
installgdbserver/bin/ 디렉터리의 mips-linux-gdbserver는 필수 보드에 복사합니다.
2) SSH를 통해 장치에 로그인하고, /tmp 디렉터리에 gdbserver를 다운로드하고 +x 권한을 추가합니다.
3) SSH를 통해 장치에 로그인하고, 실행 가능한 프로그램을 / tmp 디렉터리에 추가하고 +x 권한을 추가합니다.
4)
/tmp # ./mips-linux-gdbserver :10000 ./test 调试输出: /tmp # ./mips-linux-gdbserver :10000 test Process /tmp/test created; pid = 22608 Listening on port 10000 Remote debugging from host 192.168.0.245 APP is running!
실행 참고:
1) 다운로드한 실행 프로그램은 장치에 필요한 컴파일 체인으로 컴파일되어야 합니다.
2) vscode에서 F5를 눌러 디버깅할 때 GCC는 컴파일 구성 및 GDB 참조 1 및 2 ;
5. 디버깅
VSCode에서 완료하고 디버그할 준비를 합니다.
관련 권장 사항: vscode 튜토리얼
위 내용은 vscode에서 gdb 디버깅을 사용하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!