You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When "Generate separate debug info" is checked in Qt Creator, the atos lookup fails.
For starters, the .pri file needs QMAKE_CFLAGS_RELEASE_WITH_DEBUGINFO and QMAKE_CPPFLAGS_RELEASE_WITH_DEBUGINFO options modified like the others to turn off optimization.
Then the atos command needs to be changed to handle the external dSYM file (I think?).
I don't plan to do this, but if someone wants to take a swing at it, please feel free.
The text was updated successfully, but these errors were encountered:
This turns off optimization and PIE so we at least get a reasonable stack in this case. The name lookup fails however, so the names are still mangled.
This addresses part of #8
When "Generate separate debug info" is checked in Qt Creator, the
atos
lookup fails.For starters, the .pri file needs
QMAKE_CFLAGS_RELEASE_WITH_DEBUGINFO
andQMAKE_CPPFLAGS_RELEASE_WITH_DEBUGINFO
options modified like the others to turn off optimization.Then the
atos
command needs to be changed to handle the external dSYM file (I think?).I don't plan to do this, but if someone wants to take a swing at it, please feel free.
The text was updated successfully, but these errors were encountered: