-
Notifications
You must be signed in to change notification settings - Fork 236
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
please add hints to error message "no debug info in Mach-O executable" #122
Comments
The intent is that you should not have to run dsymutil. Something is wrong. However, I don't have access to a MacOS system myself to debug this. |
Maybe it's related to the test suite failures that I see on macOS 12? I've now reported them at #123 .
Oh, you mean, libbacktrace is supposed to look at the file names stored in the executable ( There are 3 cases:
In case a), In case b) and c), In case c) the user needs also to install the executable.dSYM directory; I hope they will understand this when they know about |
Related: GCC bug 97082 and GCC bug 105590 |
Thanks, I improved the error messages slightly. |
Thank you. I appreciate it. |
The error message
gives no clue as to how to fix this issue.
Please change the message to
Rationale:
I used libbacktrace in a project with Automake, and it produced this error message. I then spent several hours:
How to reproduce:
foo.c.gz
It works in one step:
But it doesn't work in two steps, until a
dsymutil
invocation has been performed:References:
If the error message had given me a hint to the missing
dsymutil
invocation, it would have saved me a lot of time.The text was updated successfully, but these errors were encountered: