I'd like to create a dSym file when building my Release build but I'd also like to strip symbols in the executable to keep things away from nosy eyes. Is it possible to do both? Or are they mutually exclusive?
I'm using this:
GCC_GENERATE_DEBUGGING_SYMBOLS=YES,
GCC_DEBUGGING_SYMBOLS = full,
DEBUG_INFORMATION_FORMAT=dwarf-with-dsym,
COPY_PHASE_STRIP=YES,
DWARF_DSYM_FILE_NAME = "$(TARGET_NAME).dSYM",
DWARF_DSYM_FOLDER_PATH = "$(CONFIGURATION_BUILD_DIR)/dSyms"
...which DOES create the dSym file but unfortunately keeps the symbols in my executable.
???