Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pkg/proc: enable basic debug functionality for stripped ELF binaries #3408

Merged
merged 6 commits into from
Jun 14, 2023

Commits on Jun 8, 2023

  1. pkg/proc: enable basic stripped binary debugging

    We used to parse the .gopclntab section but removed support in favor of
    simply using DWARF debug information, due to lack of C symbols among
    other reasons. This makes it impossible to debug stripped binaries,
    which some distrubutions ship by default.
    
    Add back in basic support for .gopclntab which survives if the binary
    is stripped, allowing for rudimentary debugging such as basic
    program navigation, tracing, etc...
    derekparker committed Jun 8, 2023
    Configuration menu
    Copy the full SHA
    77e0a7e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    94511f6 View commit details
    Browse the repository at this point in the history
  3. refactor and cleanup

    derekparker committed Jun 8, 2023
    Configuration menu
    Copy the full SHA
    b08b3de View commit details
    Browse the repository at this point in the history

Commits on Jun 12, 2023

  1. review feedback

    derekparker committed Jun 12, 2023
    Configuration menu
    Copy the full SHA
    373748f View commit details
    Browse the repository at this point in the history

Commits on Jun 13, 2023

  1. refactor

    derekparker committed Jun 13, 2023
    Configuration menu
    Copy the full SHA
    c90fe6e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e89512d View commit details
    Browse the repository at this point in the history