"Generating dSYM file" takes ages in XCode 4.5

11,906

Solution 1

a dSYM file is used to resymbolicate your crash reports from users. Check out this Apple Tech Note, specifically the "Analyzing Crash Reports" section).

To speed things up, you could always turn off dSYM generation for your DEBUG builds and then turn it on for ADHOC and/or Store builds. Here is a related question that talks a bit about that.

Solution 2

dsymutil's run time is largely determined by the amount of debug information it needs to process to create the dSYM. Chances are you are using a different compiler in Xcode 3.2.6 vrs. Xcode 4.5, or the 4.5 compiler is emitting more/better debug information so the dsymutil time is longer.

Share:
11,906
Mr. Boy
Author by

Mr. Boy

SOreadytohelp

Updated on June 12, 2022

Comments

  • Mr. Boy
    Mr. Boy almost 2 years

    Every time I build in XCode 4.5 I note this step takes over a minute, in a full rebuild this step is probably as long as everything else in total!

    I previously used XCode 3.2.6 and building in 4.5 is far slower. Is there anything I can do to improve this? Is there any information on what a dSYM does, I don't recall ever seeing it on 3.2.6.