Xcode 4.3.2 build archive does not create dsym

I have an old project developed with Xcode 4, I remember how I did xarchive on Xcode, which generated dsym correctly. but in the latest version x 4.3.2, the created xarchive does not have a dsym file. I checked the settings for these parameters

  • dwarf with dsym for debugging and release

what else causes the problem, are there any other settings that I have to take care of? please help solve this problem.

note: I choose to archive-debug and not archive the release in the schema. thank.

+5
source share
2 answers

, Generate Debug Symbols YES Build Settings. , . , .dSYM .

  • Show In Finder
  • .xarchive Show Package Contents
  • dSYMs.
+13

  • , :

    • ... → DWARF DSYM
    • ... →
    • ... →
  • . dSYM , , "Generate Appname.dSYM ...in {path}" Fabric, dSYM:

no dsym

" " "dSYM".

, :

DEBUG_INFORMATION_FORMAT dwarf-with-dsym .

, , dSYM . , DWARF_DSYM_FOLDER_PATH DWARF_DSYM_FILE_NAME.

dSYM , DWARF_DSYM_FOLDER_PATH $(CONFIGURATION_BUILD_DIR)/$(EXECUTABLE_FOLDER_PATH) DWARF_DSYM_FILE_NAME $(EXECUTABLE_NAME).dSYM

dSYM

generate target.dSYM

+3

All Articles