-
Notifications
You must be signed in to change notification settings - Fork 17.9k
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
cmd/compile: TestGdbPythonCgo fails with clang15 due to missing DWARF type information #72152
Comments
@golang/runtime |
In triage, this seems like a DWARF issue? CC @dr2chase @thanm CC @golang/compiler go-delve/delve#3873 seems related, and this might end up being a Clang problem. |
@linsite for what it's worth we have a builder that runs clang-15 on linux/arm64 on every commit, and we don't see these failures there. This says to me that the test is failing on your particular system due to some sort of configuration problem, most likely with clang or GDB, not with Go. It's hard to think of possible suggestions without being able to experiment with the system by hand. Generally speaking this error ("gdb.error: 'runtime.allgs' has unknown type; cast it to its declared type") means that GDB was able to start up the binary but wasn't able to read the Go-specific debug info (DWARF). This can mean that GDB is too old (I note that you did not include the GDB version with your report -- that piece of info would be helpful), or it could be that somehow the compiler is doing something that GDB doesn't like. Thanks. |
gdb info has been added. FYI gcc seems to work fine in the very same environment.
if there are any tests or information needed, please let me know. |
gdb 9 is fairly old. On the Go clang15 builder we are running gdb 13.1. Just a couple of days ago we changed the minimum gdb requirement on HEAD to be gdb 10. Perhaps we should simply backport that requirement. |
Thanks. @ianlancetaylor It's clear to me now that clang15 is using DWARFv5, is not compatible with gdb 9.
I totally agree, that surely can help. |
Go version
go version go1.24.1 linux/arm64
Output of
go env
in your module/workspace:GDB
$ gdb --version
GNU gdb (Ubuntu 9.2-0ubuntu1~20.04.2) 9.2
Copyright (C) 2020 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later http://gnu.org/licenses/gpl.html
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
What did you do?
CC=/usr/bin/clang-15 go test runtime -run TestGdbPythonCgo
What did you see happen?
Failed
What did you expect to see?
Test should pass.
The text was updated successfully, but these errors were encountered: