chore: update docker image version in script && update doc (#1076)

* chore: update docker image version in script

* chore: replace lots of spaces with newline in doc
This commit is contained in:
LIU Yuwei
2024-12-16 01:48:46 +08:00
committed by GitHub
parent 2b72148cae
commit 57b20d2326
5 changed files with 6 additions and 1 deletions

View File

@ -3,6 +3,7 @@
## 前言
  GDB是一个功能强大的开源调试工具能够帮助您更好的诊断和修复程序中的错误。
  它提供了一套丰富的功能,使您能够检查程序的执行状态、跟踪代码的执行流程、查看和修改变量的值、分析内存状态等。它可以与编译器配合使用,以便您在调试过程中访问程序的调试信息。
  此教程将告诉您如何在DragonOS中使用`rust-gdb`来调试内核,包括如何开始调试以及相应的调试命令。
@ -29,6 +30,7 @@ debug = true
### 1.2 运行DragonOS
  准备工作完成后您就可以编译、运行DragonOS来开展后续的调试工作了。
  在DragonOS根目录中开启终端使用`make run`即可开始编译运行DragonOS,如需更多编译命令方面的帮助,详见
> [构建DragonOS](https://docs.dragonos.org/zh_CN/latest/introduction/build_system.html)。