crash log does not symbolicate system libraries armv7s

前端 未结 3 960
情书的邮戳
情书的邮戳 2021-01-06 06:28

I am trying to analyse a crash log that a customer sent me, but I cannot get it to symbolicate the system library calls. It does symbolicate calls

相关标签:
3条回答
  • 2021-01-06 06:46

    In following answer of Kerni: You can install related Xcode with your target version of iOS and copy ~/Library/Developer/Xcode/iOS DeviceSupport/

    0 讨论(0)
  • 2021-01-06 07:01

    I ran into this issue as well with an iOS7 app using XCode5, even though I had all the correct symbols.

    What I found was that I had taken my dSYM file out of the archive where spotlight could index it, but the crashlog was only getting partically symbolicated (as seen in the question). But I had left the actual .app file in an xcarchive, and it was not able to be indexed by spotlight. As soon as I copied that file out of the archive to the visible location, I was able to symbolicate properly.

    0 讨论(0)
  • 2021-01-06 07:02

    There are only two ways to solve this:

    1. You either need an iPhone 5 device with iOS 6.1.3 to plug into your computer so Xcode can import the symbols
    2. Or you need to get the symbols from another developer and replace yours with them.

    Usually the symbols are part of the latest Xcode release, but Apple doesn't always provide Xcode updates when an iOS version only contains bug-fixes but no API changes.

    0 讨论(0)
提交回复
热议问题