2

I ran the time profiler on the device. I ended up with a trace, but no symbols. So, following the suggestion in this answer, I attempted to re-symbolicate. However, the drop-down list of binaries was empty. See the screen shot. How can I get symbols into my trace?

For general instructions on symbolicating profiler runs, see here. But this particular problem is not addressed. enter image description here

4

1 に答える 1

0

dSYM とアプリ バンドルがある場合は、私が書いたこのシンボル化ツールを使用して、アプリのアドレスをすばやくシンボル化できます。

symbolication your.app.dSYM your.app.trace

シンボリック化されたバージョンは STDOUT に出力されます。最良の結果を得るには、.app を .dSYM と同じフォルダーに保管してください。

https://github.com/Imperiopolis/Symbolication

GDB を使用して、問題のある行だけを手動でシンボル化することもできます。GDB で dSYM を開き、実行します

set print symbol-filename on
p/a address
于 2012-10-19T12:27:29.620 に答える