Search results for

dsym file

77,666 results found

Post

Replies

Boosts

Views

Activity

How to symbolize memory graph if symbols is not compiled into application
To reduce the app size, the application dmg file does not contains the symbols in it. But when we meet memory issue, I use leaks 'appName' --outputGrap =memoryLeak.memgraph to get a memory graph Because there is no symbols contained the application, there is no function names(module names) which allocate the memory from the memory graph. But, we save the symbols as separate .dSYM files when compile, Is there any way to use the .dSYM files to symbolize the memory graph in this case ?
0
0
300
Oct ’24
Reply to Reading debug symbols from binary
I’m gonna divide this up into two parts: Apple stuff Third-party stuff On the Apple front, Clang automatically cleans up behind itself which causes grief for dsymutil. One way to fix that is to pass in -save-temps. For example: % cat hello.c #include int main(int argc, char ** argv) { fprintf(stderr, Hello Cruel World!n); return 0; } % clang -g hello.c -save-temps -o hello % dsymutil hello % ls -l total 200 -rwxr-xr-x 1 quinn staff 33672 3 Dec 15:11 hello … -rw-r--r--@ 1 quinn staff 116 3 Dec 15:07 hello.c drwxr-xr-x 3 quinn staff 96 3 Dec 15:11 hello.dSYM … -rw-r--r-- 1 quinn staff 17074 3 Dec 15:11 hello.s Regarding your third-party tooling, I’m not sure that dsymutil is gonna be super helpful to you. .dSYM files are a very Apple thing. Regardless, dsymutil is looking in the .o files for DWARF symbols; if it can’t find any, it’s likely because the compiler didn’t generate debug symbols, or generated them in the wrong format, or didn’t include the debug map required to find those .o files
Dec ’24
Reply to Can't download dsyms
I'm facing the same issue. I guess it has nothing to do with License Agreement. It's just default error message.Fortunately there is one more way to download dSYMs using iTunes Connect. See eg. https://docs.fabric.io/apple/crashlytics/missing-dsyms.html#downloading-bitcode-dsyms for details.
Oct ’16
Reply to Reproducible Builds on iOS
Dear Ed Ford, We've managed to achieve reproducible builds! We're not using the dSYM files, we're actually checking the executables. Here's how we did it: Sample App `-- Frameworks |-- Baseframework1.framework (Embed & Sign) |-- Baseframework2.framework (Embed & Sign) |-- Baseframework3.framework (Embed & Sign) `-- MiddlemanFramework.xcodeproj (Embed & Sign, Mach-O type=dynamic) `-- Frameworks |-- Baseframework1.xcodeproj (Do not embed, Mach-O type=dynamic) |-- Baseframework2.xcodeproj (Do not embed, Mach-O type=dynamic) `-- Baseframework3.xcodeproj (Do not embed, Mach-O type=dynamic) Accomplished with: Main App References Middle Layer Framework by .xcodeproj and .framework References base frameworks by .framework Embed setting set to Embed & Sign (both base frameworks and middle layer framework) Middle Layer Framework Mach-O type set to dynamic References base frameworks by .xcodeproj and .framework Embed setting set to Do not embed Base Framework: Mach-O type set to dynamic Sinc
Mar ’25
Reply to Generating dSYM hangs Xcode 10
Me Too.Xcode 10 Release Version.Generating dSYM with Xcode 9 -> No problem aprox. 20 secondsGenerating dSYM with Xcode 10 -> after aprox. 10 minutes : no more memory + auto reboot.YES : same solution !!This is not acceptable!!!How can i fix this.I need the debug symbols to analyse crashes.
Sep ’18
Reply to ITMS-90809: Deprecated API Usage
Thanks for the update. My apologies for the delay in responding. It would be beneficial to involve Xamarin support as there was an issue with Xamarin.Forms reported before. As for third-party development tools, I’m not sure about their specific use, but I can recommend checking the directory level for UIWebview references using the command ‘grep -r UIWebview’. This will list all the references and their respective libraries, providing a clearer idea of their whereabouts. For example, cd ~/Library/Developer/Xcode/Archives/2020-03-09/SampleApp 3-9-20, 11.47 AM.xcarchive To search for UIWebView, type the following on the command-line: grep -R UIWebView * If there are references to UIWebView, you will get a list of files that contain the reference. You may find references in your app’s nib files, dSYM file, or even a ReadMe or other documentation. For example, % grep -R UIWebView * Binary file Products/Applications/SampleApp.app/Base.lproj/Main.storyboardc/BYZ-38-t0r-view-8bC-X
Jun ’24