Search results for

dsym file

77,668 results found

Post

Replies

Boosts

Views

Activity

Symbols for OSX system libraries such as CoreFoundation, Foundation, and AppKit
I have a crash callstack from an application and I know exactly which version of OSX it's coming from. I can symbolicate my app frames fine but I have no idea where one can get .dSYM for system libraries.My input is for example this:OS: Mac OS X 10.14.3 (18D42)Foundation + 0x1c4aaI am basically looking for an equivalent of Microsoft's symbol server. From my web searches it looks as though some iOS .dSYM files ship with XCode but I haven't found anything related to desktop symbols. I must be missing something really obvious here 🙂Thank you!Ladi
0
0
990
Apr ’19
Reply to Crash Reports for Swift
You need make sure that the binary UUID in the crash report matches the UUID in your .dSYM and that UUID is visible to Spotlight. To learn more, read this post. Share and Enjoy — Quinn “The Eskimo!” Apple Developer Relations, Developer Technical Support, Core OS/Hardware let myEmail = eskimo + 1 + @apple.com
Topic: Programming Languages SubTopic: Swift Tags:
Jul ’16
Reply to EXC_BAD_ACCESS since 12.4 can't reproduce
Hello once again, sorry for disturbance, begging for a help.Could you please help me to symbolicate crash report, spent the whole day, suppose I'm doing something wrong.Tried it with atos, but with no luck(xcode gives nothing at all. Organaizer even doesn't download .dsym file.You my last resort.Really appreciate your help and responsiveness.Thanx in advance
Sep ’19
Reply to Generating dSYM hangs Xcode 10
Me too.We have the same issue. We have a project that mixes Obj-C and swift and uses Obj-c and swift frameworks.I hope that this issue will be soon fixed by Apple. We found a workaround to generate a development IPA:- Archive in Xcode 10 by disabling dsym for release in project settings- Export the IPA with Xcode 9
Oct ’18
Reply to iOS App Contains Developer Path Information
@eskimo I followed your steps and I am able to find my workspace path as well. I am working on this issue as well due to security reasons and I have found that disabling bitcode during export process is limiting this issue somehow, but disabling bitcode is not necessarily what I want to do because of dsym, analytics and other advantages of bitcode being enabled. Do you have any solutions to this problem?
Topic: Programming Languages SubTopic: Swift Tags:
Nov ’21
Reply to Generating dSYM hangs Xcode 10
I'm seeing a similar issue. Xcode consumes all available system memory and the then machine freezes and needs to be rebooted. Have you found any workaround besides just disabling dSYMs? FWIW, choice of legacy vs new build system does not affect the issue for me, nor does cleaning the project or deleting all of the build intermediates.
Sep ’18
Reply to DSYMs No Longer Offered for Download?
I also have the same issue - nothing has changed about our Fastlane build process, but recent builds aren't showing up with the download dSYM link in ASC. We have started signing and uploading multiple builds for the same binary (with different build numbers for TestFlight vs. App Store release) - a previous poster mentioned something similar. Could that be the problem?
Apr ’19
Reply to Missing Hermes DSYMs in Archive
That's a great question for Hermes to answer. I see that it's an open source library, but getting a dSYM for their library may mean you need to build it from source (if you're using a pre-compiled version) or that you'll need to alter the build configuration they use. Their support will be in the most knowledgable position to answer those questions. — Ed Ford,  DTS Engineer
Jun ’25
Reply to Upload Symbols Failed on Xcode 16
I get the same error. I'm not using any third party frameworks or static libraries. I have my project set to include DWARF with dSYM in the build and debugger. This is a MacOS C/Objective C XCode project. With some Swift. Most of the discussion about this for iOS projects. When I verify or upload my App I just ignore this. Is this OK? Is this an Apple bug?
Sep ’25
XCode 14 & Firebase Crashlytics
I have not been able to find much chatter at all about the impact of not having dsym files via TestFlight to support Crashlytics reporting. Currently, I download the files from TestFlight and then upload them to Firebase. Then, a Slack integration is used to notify me when there is a new crash that needs to be investigated. Does the new change to XCode 14 basically remove Crashlytics from equation? Since I rely on Apple to sign the apps, I'm assuming that nothing local can be used. But, I'm also still learning. Any insights/suggestions are appreciated.
7
0
7.1k
Oct ’22
Reply to Register x1 is not available
It is the log, but it is not symbolicated. If it were, the lines1 usagApp 0x000000010015724c 0x1000c0000 + 619084 2 usagApp 0x000000010014ba80 0x1000c0000 + 572032 3 usagApp 0x000000010014b9c4 0x1000c0000 + 571844would contain useful information: the exact file and line numbers in your code where the crash occurred. Without that, there's not much anyone can help with.If Xcode won't symbolicate it when you view the log in Devices -> Device Logs, then you have an uphill task. Some people have reported that the build UUID doesn't match for some reason and have had success editing the log with the correct UUID to match the correct DSYM from your app archive... it's not for the faint of heart though. From what I've read there's no one size fits all solution to fix symbolication problems.
Dec ’15
Reply to Cryptic error message- what is "user account" and "iTunes provider"?
I am also having the same issue (Your user account is attached to several iTunes providers. Create separate accounts for each provider before logging in.) when trying to download a dSYM file.It does *sound* like a roles issue. Strangely enough, I was able to switch between two different itunes groups that my developer id is associated with. Maybe thats what is meant by iTunes providers.
Nov ’15
Symbolicating Crash Reports for Mac Catalyst App
I'm trying to debug a couple of crash reports for a Mac Catalyst app and seem to be unable to symbolicate my crash reports. In the Xcode Organizer, I see unsymbolicated lines for my app, despite having the original archive for the build in question. A search for the relevant dSYM (using the process from https://developer.apple.com/documentation/xcode/adding-identifiable-symbol-names-to-a-crash-report#Locate-a-dSYM-Using-Spotlight) yields no results. Unlike iOS builds, the Download dSYMs button isn't present in the organizer, nor is the option to download dSYMs from App Store Connect. I assume this is because macOS apps don't use bitcode. The app's Debug Information Format is set to DWARF with dSYM File. Has anyone else run into this issue? Any ideas about how I can symbolicate the crash logs?
5
0
2.2k
Apr ’22
Xcode debugger can't inspect opaque C structs in a dynamic library
I have Mac OS application with several embedded frameworks. When debugging the application in recent versions of Xcode (comfirmed in 14.2) I am no longer able to inspect opaque C structs defined in a framework when the debugger has stopped in code belonging to the application or a different framework. The application and frameworks are all compiled by me as part of the application workspace, all have debugging enabled, and all are properly generating dSYM files. Does anyone know what might be going on? This is making debugging the framework code very difficult.
0
0
975
Apr ’23