Skip to content

Instantly share code, notes, and snippets.

@zorchp
Created November 5, 2024 09:26
Show Gist options
  • Save zorchp/6695466d7a4de4b624dbfaab5c740280 to your computer and use it in GitHub Desktop.
Save zorchp/6695466d7a4de4b624dbfaab5c740280 to your computer and use it in GitHub Desktop.
gdbinit config
set pagination off # 禁用分页模式,防止 gdb 在输出长信息时暂停
set print pretty on # 更好地打印结构体、数组等复杂数据结构
highlight-source on # 启用语法高亮
set print array on # 打印数组时自动显示所有元素
set print elements 0 # 显示所有数组元素,默认最多显示200个
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment