symbolicate

How can I tell Spotlight to index my .dSYM bundles?

人盡茶涼 提交于 2019-12-18 12:26:15
问题 Today was the first time that I tried - and failed - to symbolicate a crash log on a newly bought MacBook (let's call this machine MB1). MB1 came with Mac OS X 10.9 pre-installed. I tracked the problem of the failing symbolication down to Spotlight not indexing any of my .dSYM bundles (without the Spotlight index, Apple's symbolicatecrash script fails to locate the .dSYM bundle that matches the crash log). I came to my conclusion because mdfind "com_apple_xcode_dsym_uuids == *" does not print

How to symbolicate crash/error logs from a Xamarin Forms iOS project?

独自空忆成欢 提交于 2019-12-13 11:44:13
问题 I need to symbolicate some crash logs and for that I read that I need the .app and the .dSYM files together with the .crash files. I can't find the .app file anywhere. I have the .app.dSYM file and the .crash ones but I can't find the .app one. I can also see my error logs on the Xcode Organizer. But the lines from my Application are not symbolicated. And if I click on the arrow to open with a project, I have no idea which file to open. Thanks 回答1: When you build your iOS project, you should

Is it possible to symbolicate MonoTouch crash dumps and get line numbers out of them?

余生长醉 提交于 2019-12-12 07:38:34
问题 Is it possible to symbolicate MonoTouch crash dumps and get line numbers out of them? If so, how is it done? I have configured my project in the following way: Build in release mode Checked 'Enable debugging' in Project Options -> Build -> iPhone Build -> General tab Checked 'Emit debugging information' in Project Options -> Build -> Compiler Now, when I run symbolicatecrash against a dump, I get my method names in the stack trace but with only an offset against them (eg '+ 268') rather than

Get symbol by address (symbolicating binary, iOS build)

99封情书 提交于 2019-12-11 03:24:49
问题 I have snapshot of Allocations Instrument with address of interesting symbol: And I want to know, where this address is in code. I have corresponding dSYM file. I tried to use atosym command-line tool but it gives me wrong symbols (not related to my app). How to get it? PS: The binary was built by XCode 4.3.2, code language is C++, armv7 architecture, release build configuration. 回答1: dwarfdump does what I need: dwarfdump --arch armv7 myApp.dSYM --lookup 0xaabbccdd 来源: https://stackoverflow

iOS - Symbolicate Stack trace symbols

℡╲_俬逩灬. 提交于 2019-12-09 02:18:34
I want to symbolicate the stack trace symbols logged using [NSThread callStackSymbols] to identify the full stack backtrace calls. But, this doesn't give symbolicated trace. 0 TestApp 0x0029616f TestApp + 1823087 1 TestApp 0x003ef18d TestApp + 3236237 2 UIKit 0x2ab7bb1f <redacted> + 438 3 UIKit 0x2ac0bea3 <redacted> + 306 4 UIKit 0x2ab7bb1f <redacted> + 438 5 CoreFoundation 0x2757546d <redacted> + 48 6 CoreFoundation 0x2756e4c3 <redacted> + 234 7 UIKit 0x2ab7bc9b <redacted> + 818 8 UIKit 0x2ae32799 <redacted> + 584 9 UIKit 0x2abdfbd9 <redacted> + 308 10 UIKit 0x2ab5bdd7 <redacted> + 458 11

Symbolicate crash report without the app binary

天大地大妈咪最大 提交于 2019-12-08 01:36:24
问题 I'm investigating how to create a server side iOS crash report symbolication server like Crashlitics or Crittercism or HokeyApp, from I can see, they only ask the user to upload the .dSYM file then they are able to symbolicate the crash report, I'm wondering how they archive it? Apple's standard symbolicatecrash command needs the app binary and the .dSYM file being provided together: Symbolication - resolving stack trace addresses to source code methods and lines - requires the application

Symbolicate crash report without the app binary

99封情书 提交于 2019-12-06 07:50:43
I'm investigating how to create a server side iOS crash report symbolication server like Crashlitics or Crittercism or HokeyApp, from I can see, they only ask the user to upload the .dSYM file then they are able to symbolicate the crash report, I'm wondering how they archive it? Apple's standard symbolicatecrash command needs the app binary and the .dSYM file being provided together: Symbolication - resolving stack trace addresses to source code methods and lines - requires the application binary that was uploaded to the App Store and the .dSYM file that was generated when that binary was

How to symbolicate crashes in Xcode 7.3?

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-05 16:44:37
问题 Can you help me get my crashes symbolicated? In Xcode 7.3, Window -> Organizer -> Crashes, I have crash reports from my latest TestFlight builds. They were built on this Mac, and all the archives with the corresponding dSYMs are in the Archives tab. The app is divided into a number of frameworks and the main app, and many are a mix of Swift and Objective C. In the crash log I can see the name of the frameworks and app listed correctly, but all the entries for my frameworks and app are in hex.

Symbolicating iOS crash address returns inappropriate results

家住魔仙堡 提交于 2019-12-04 18:46:30
I have spend couple of days lately to learn how to symbolicate a line number of a crash which I receive with a custom solution. I have figure out I need the .app and .dSYM files, I have checked the UUID and it's the same as the crash that I get, where I also get the UUID to validate. Three identical UUID and the architecture is arm64, I get the crash to test it from my iPhone5S. OK, let's say I have in my stacktrace two related to my application lines. Here is the full stacktrace from the JSON I get. "0 MyTestApp 0x10000efe8 0x100008000 + 28648", "1 UIKit 0x1863d90c8 0x186390000 + 299208", "2

Symbolicating Stack Trace without Crash

你。 提交于 2019-12-03 16:21:51
问题 Is there any way to symbolicate a stack trace that is not a full crash report? I am logging the string result of [NSThread callStackSymbols] to our server. This doesn't give a fully formatted crash report, but just the unsymbolicated stack trace (example below). I have tried to symbolicate just this. I have also tried replacing the thread 0 stack trace of an actual crash report from the same build. Neither worked. I do have the dSYM of the build in the app archive. Is there any way to do this