-
Notifications
You must be signed in to change notification settings - Fork 440
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
Test BSS scanning code #715
Conversation
Seems like we can't figure out the python interpreter address w/o symbols, which definitely used to work . Testing this out in CI to figure out what version this started to fail at
Seems like the BSS scanning breaks with python 3.10+ and works for older versions of python. This means that we currently require some debug symbols for python 3.10+, which is might be the root cause of issues we've been seeing on windows w/ python 3.10+ (and maybe even things like #709 ). |
running git bisect on my linux box using this branch - shows that this change broke the BSS scanning feature python/cpython#4802 , by moving the PyRuntime global from the BSS section to its own named section |
Seems like we can't figure out the python interpreter address w/o symbols, which definitely used to work . Testing this out in CI to figure out what version this started to fail at