TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

GDB Dashboard

158 pointsby epsylonover 9 years ago

9 comments

kqr2over 9 years ago
If you use emacs, you can use gdb-many-windows to do something similar.<p><a href="http:&#x2F;&#x2F;emacs-fu.blogspot.com&#x2F;2009&#x2F;02&#x2F;fancy-debugging-with-gdb.html" rel="nofollow">http:&#x2F;&#x2F;emacs-fu.blogspot.com&#x2F;2009&#x2F;02&#x2F;fancy-debugging-with-gd...</a>
jlasover 9 years ago
Just an FYI, there is a similar TUI built in to GDB: <a href="https:&#x2F;&#x2F;sourceware.org&#x2F;gdb&#x2F;onlinedocs&#x2F;gdb&#x2F;TUI.html" rel="nofollow">https:&#x2F;&#x2F;sourceware.org&#x2F;gdb&#x2F;onlinedocs&#x2F;gdb&#x2F;TUI.html</a>
nadamsover 9 years ago
Pretty awesome - the only thing I would change is for the ability to switch to Intel syntax for the disassembly. Maybe I&#x27;m the only one - but I find intel syntax easier to read.
评论 #10209885 未加载
评论 #10213125 未加载
xenonlightover 9 years ago
This is super sweet! I&#x27;ve recently been messing around a lot in C&#x2F;C++ with GDB to spelunk through, and this kind of wrapper makes a lot of things immediately visible that I wish were there by default.<p>Thanks a ton for posting!
jossoover 9 years ago
Does anything like this exist for LLDB?
评论 #10209882 未加载
Tooover 9 years ago
This looks great but im curious, when do people actually use gdb shell instead of debugging in your IDE? I only do it during emergencies, such as a one in a million bug happened on a server which I can only access over SSH and this might be my only chance to find it. Maybe this tool could make that experience a bit closer to what I&#x27;m used to when using an ide.
评论 #10210515 未加载
martin_over 9 years ago
Wow thank you, this is awesome! It&#x27;d be great if you created a place where people could create PR&#x27;s to share their own modules
评论 #10213145 未加载
igiturover 9 years ago
How does one use this? I can&#x27;t find conclusive instructions. Yeah, I&#x27;m new to this.
mnemover 9 years ago
Is there much difference between this and the built in windowing features of gdb like `layout asm` and so on?