Xcode 4 archive warning to skip copy phase

独自空忆成欢 提交于 2019-11-28 17:24:17

问题


I have an app for the Mac that I am trying to archive. I have done this in the past with an earlier version of Xcode however when I archive with Xcode 4, I get the following warning:

warning: skipping copy phase strip, binary is code signed: .....

The warning pertains to a helper tool that must be copied during the build phase. How do I resolve this warning?

Any suggestions?


回答1:


The solution would be to go to the build settings of your application target (not the help tool target) and set "Strip Debug Symbols During Copy" to "No". This is the key COPY_PHASE_STRIP.

Activating this setting causes binary files which are copied during the build (e.g., in a Copy Bundle Resources or Copy Files build phase) to be stripped of debugging symbols. It does not cause the linked product of a target to be stripped (use Strip Linked Product for that).

The main problem is that you can not strip debug symbols from a signed executable. This is why you must skip this step.



来源:https://stackoverflow.com/questions/5494920/xcode-4-archive-warning-to-skip-copy-phase

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!