Search results for

dsym file

75,572 results found

Post

Replies

Boosts

Views

Activity

Reply to Xcode 12 beta 3 – XCFrameworks and debug symbols
Your build commands have a few mistakes. I made the same simple framework you did (a single Swift struct), and used the following build commands instead. I'm going to format them here with line breaks and indentation for readability. Note that I've set Build Library for Distribution to Yes and Skip Install to No in the framework target's build settings, so they don't appear here. % xcodebuild archive -scheme StructKit -destination generic/platform=iOS -archivePath iOS.xcarchive % xcodebuild archive -scheme StructKit -destination generic/platform=iOS Simulator -archivePath sim.xcarchive % xcodebuild -create-xcframework -framework iOS.xcarchive/Products/Library/Frameworks/StructKit.framework -debug-symbols iOS.xcarchive/dSYMs/StructKit.framework.dSYM -debug-symbols iOS.xcarchive/BCSymbolMaps/<UUID>.bcsymbolmap -framework sim.xcarchive/Products/Library/Frameworks/StructKit.framework -debug-symbols sim.xcarchive/dSYMs/StructKit.framework.dSYM -output StructKit.xcframework I also notice you
Jul ’20
Reply to Dtrace no longer have access to HFS data structures
Yeah, HFS is now loaded from a KEXT, which is cool in general but makes things hard for DTrace. It would seem logical for the HFS KEXT’s .dSYM to be included in the Kernel Debug Kit but it is not. You should definitely file a bug requesting that. Please post your bug number, just for the record. If no one else chimes in, you might try asking over on the filesystem-dev mailing list.Share and Enjoy — Quinn “The Eskimo!” Apple Developer Relations, Developer Technical Support, Core OS/Hardware let myEmail = eskimo + 1 + @apple.com
Topic: App & System Services SubTopic: Core OS Tags:
Dec ’16
Reply to Missing (or invalid) dSYMs
Seeing the same issue. We started seeing this for a build which we uploaded to Appstore connect on July 27th 2021. Ever since then all of our bitcode enabled builds uploaded to appstore connect do not have matching UUIDs between the crashes reported and the dsyms downloaded from appstore connect. Even xcode organiser is unable to symbolicate these crash logs. This issue seems to be happening for app targets and not the extension targets such as Intent Service extensions. The app extension crashes appear symbolicated on xcode organiser. If it helps our Compressed File size on appstore connect is 274MB.
Aug ’21
Reply to Crash log and symbolication when using Xcode Cloud
But what if I don't download the archive builds from Xcode Cloud and don't have them locally? Does that mean that I won't be able to symbolicate crash? I thought the crashes would be symbolicated in the cloud. It's not the case? When you submit your app to the App Store, there's an option for you to include symbol information as part of the app for that upload. When you do so, crash reports that appear in your Xcode Organizer for that app version will be symbolicated for you already. That's a feature of the App Store, and not specific to builds created and uploaded through Xcode Cloud. However, that doesn't mean you shouldn't download the archives from Xcode Cloud, that is still a best practice. One valuable part of that is access to the dSYMs, which are incredibly detailed debugging assets. While using the dSYMs for symbolication is one function they serve, they also enable significant debugging capabilities using LLDB that aren't possible without them. The symbol information for symbolicat
Jun ’25