idea-native2-debugger VS pdv

Compare idea-native2-debugger vs pdv and see what are their differences.

idea-native2-debugger

IntelliJ IDEA cross-aware remote-aware debugger for native executables (by daym)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
idea-native2-debugger pdv
2 2
2 9
- -
6.9 4.8
21 days ago 9 months ago
Java Zig
Apache License 2.0 GNU Affero General Public License v3.0
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

idea-native2-debugger

Posts with mentions or reviews of idea-native2-debugger. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-11-05.
  • Beej's Quick Guide to GDB (2009)
    3 projects | news.ycombinator.com | 5 Nov 2023
    CLion uses lldb.

    I wrote https://github.com/daym/idea-native2-debugger as a stop-gap. It uses gdb and works in IntelliJ IDEA Community edition. Setting it up the first time is kinda weird since you need to add a new run/debug configuration "Native2Debugger". I could not figure out how to hook this directly into the existing run configuration that you use to run your program to begin with. Otherwise, I like how it turned out.

    If you want a standalone frontend, https://github.com/epasveer/seer is extremely good.

    And emacs has gdb integration. By now I tried it, and... I guess it's better than nothing.

  • Invariants: A Better Debugger?
    3 projects | news.ycombinator.com | 2 Sep 2023
    >After playing around with a bit of C and trying gdb, I asked myself if this is really what people use. The display constantly breaks and there's not a lot of stuff to quickly walk through code and visualize what it's doing.

    As someone doing unix programming since 2001, hell no, that's not what I use (directly), for the reasons you say.

    I mean gdb in the backend is okay. But gdb actually specifies Gdb/Mi, a protocol to remote control it.

    I use IntelliJ IDEA. I wrote https://github.com/daym/idea-native2-debugger which is a native debugger plugin (that uses gdb in the back) for IntelliJ IDEA Community Edition. You can also use CLion (needs subscription) and that uses lldb in the backend instead of gdb.

    Some of my colleagues use emacs (with gdb remote thing). Seems to work OK too.

    Earlier in life I used ddd https://www.gnu.org/software/ddd/ a lot--but nowadays I just stay in IDEA.

pdv

Posts with mentions or reviews of pdv. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-09-02.
  • Invariants: A Better Debugger?
    3 projects | news.ycombinator.com | 2 Sep 2023
    I could see C++ or Rust maybe adding that eventually, but it seems unlikely for Zig unless they relax some of their core design goals. The problem with invariant assertions is figuring out when exactly they should run, and that idea that something might run _every_ time any public method is called or whatever definitely conflicts with the design they're going for.

    That said, Zig does make it pretty easy to handle a lot of the features you might want. As a library, you can offer the ability for a person to rewrite a type (maybe only in non-optimized modes if you want) and check the invariants before/after every public function call. You can always add explicit pre/post-condition checks to any function you'd like. Invariants in your inputs/outputs can be hoisted to the type checker (I wrote a toy project doing this [0]). Like...at some point you have to describe what you want to check and when you want it to run for the invariant checking to be useful, and Zig allows you to write the checks and use comptime magic to place them where you want them to run, all in the userspace of the language. Which language features would you like to make the process smoother (automatic subtype resolution on a lattice of constraints, a bit of syntax, ...)?

    [0] https://github.com/hmusgrave/pdv

  • Parse, Don't Validate (2019)
    4 projects | news.ycombinator.com | 7 Mar 2023

What are some alternatives?

When comparing idea-native2-debugger and pdv you can also consider the following projects:

seer - Seer - a gui frontend to gdb

gef - GEF (GDB Enhanced Features) - a modern experience for GDB with advanced debugging capabilities for exploit devs & reverse engineers on Linux