aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--XcodeConfig/subconfig/General.xcconfig7
1 files changed, 7 insertions, 0 deletions
diff --git a/XcodeConfig/subconfig/General.xcconfig b/XcodeConfig/subconfig/General.xcconfig
index e9035bb..63293cb 100644
--- a/XcodeConfig/subconfig/General.xcconfig
+++ b/XcodeConfig/subconfig/General.xcconfig
@@ -57,6 +57,13 @@ PREBINDING = NO
// http://lists.apple.com/archives/Xcode-users/2006/Feb/msg00050.html
SEPARATE_STRIP = YES
+// Do not strip any binaries during copy as it will corrupt code signatures.
+// This wont't affect iOS (since they can't have external executables or
+// frameworks) and prevents corruption on Mac. Xcode 4 warns but does not
+// fix this case:
+// http://stackoverflow.com/questions/5494920/xcode-4-archive-warning-to-skip-copy-phase
+COPY_PHASE_STRIP = NO
+
// Force C99 dialect
GCC_C_LANGUAGE_STANDARD = c99