Search results for

dsym file

75,459 results found

Post

Replies

Boosts

Views

Activity

Reply to Exception SIGABRT encountered in App Store review
Do you think the reason I am unable to further symbolicate the .ips file is because I do not have the correct .dSym file? The Binary Images section of the .ips file is as shown below. Where is the required UUID? Can you tell me how to use dwarfdump to see if I have a .dSYM with the right UUID and how to use mdfind to see if it is visible to the symbolicator and what to do if it is not?
Topic: App & System Services SubTopic: General Tags:
Jul ’22
Reply to Having trouble reading a crash log...
Hmmm, weird. The full crash report looks valid, but I can’t get frame 7 to symbolicate.if you know of common missteps on symbolication, I'd appreciate it.By far the most common problem here is a UUID mismatch. From the binary images section of your crash report your main executable’s UUID is 115d9e06055e36d298f592afd69b7642. You need to find the .dSYM file that corresponds to that. The Symbolication Troubleshooting section of TN2151 explains how to use the dwarfdump tool to print the UUID of a file. So, what you need to do is track down all of the candidate .dSYM files (which may be inside an .xcarchive, or you may have to download from App Store Connect) and then run dwarfdump to confirm that you have one with the right UUID. Without a matching .dSYM file, symbolication is dead in the water. Share and Enjoy — Quinn “The Eskimo!” Apple Developer Relations, Developer Technical Support, Core OS/Hardware let myEmail = eskimo + 1 + @apple.com
Feb ’19
Reply to Import an emailed crash log into Xcode 7
When does the .dSYM file get created? Where is it stored? What would cause it to go missing or not be created in the first place?The archived build I created when I submitted this app is still on my computer. The box for Include app symbols for your application to receive symbolicated crash logs from Apple was checked when I uploaded the build. The build setting for Debug Information Format is set to DWARF with dSYM File. I also checked Debug Information Level (Compiler Default) and Generate Debug Symbols (Yes).The only thing I can think of that I might have done is selected Clean from the Product menu at some point; would this do it?Frank
Oct ’16
Xcode dSYM
Xcode has DEBUG_INFORMATION_FORMAT set for Debug as DWARF with dSYM File. However, after the Build command is executed, the dSYM file is not seen at (project)/Build/Debug. This is the place where the dSYM gets generated. The version of Xcode is 13.1.
1
0
515
Nov ’21
Empty dSYM file is generated by XCode if custom path is used in "Derived Data" field under "Locations" tab in XCode "Preferrences..."
With XCode 11.1, I set Derived Data to my custom path as /Volumes/MacData/XCBuilds/DerivedData. But there is an error that Flurry fails to upload dSYM file. I check the intermedia folder that XCode builds, find out the size of the file MyApp.app.dSYM/Contents/Resources/DWARF/MyApp under the folder /Volumes/MacData/XCBuilds/DerivedData/MyApp-gpbveffuperzlnaonxkvuwenbbdz/Build/Intermediates.noindex/ArchiveIntermediates/MyAppDEV/BuildProductsPath/MyAppDEV-iphoneos is zero bytes. But if I change the Derived Data back to Default, it builds successfully, and the size of the bin file of MyApp is not zero bytes. Is it a bug in XCode?
1
0
2.3k
Sep ’20
Reply to Xcode Dsym error
DWARF is the debug information format and the dSYM file is a package containing debug symbols.For example, if you have a library libfoo.dylib, the debug symbol file would be libfoo.dylib.dSYM.sing DWARF with dSYM strips debug symbols from the executable and places them into a separate dSYM file. Using the DWARF option keeps debug symbols in the executable instead of separating them into a separate dSYM file.You generally want to use the DWARF with dSYM option for release builds because otherwise, debug symbols get shipped with the executable if they are turned on, so turning off dSYM generation by switching to the DWARF option is not a fix, it just masks the problem. Switching to use DWARF masks the problem because it does not separate debug symbols, whereas DWARF with dSYM uses the strip and dsymutil commands, and it is typically these commands that tend to fail when there is malformed stuff in the binary. Failure on dSYM creati
Jul ’15