English 中文(简体)
缩略语
原标题:Xcode: Should I Strip Debug Symbols During Copy?

<https://testlewapp.com/sdk/doc/"rel=“noretinger”>RepFlight SDK建议设置Strip Debug signs 我注意到,它安装到<代码>YES

我是否应当将其改为<条码>。 为什么?

问题回答

我在试验论坛工作。 答案是:将其编为YES

长期回答:

@Kerni是正确的。 在我们开始具有象征意义的服务器方面之前,我们需要这种数据来象征装置。

因此,如果你把你的海关系统上载到测试灯上,你就可以将其 strip。 如果你不希望以某种理由上载海关数据系统,那么你就可以离开海关,测试灯可以象征性地使用。

基本上没有更新README。 Sorry @Manni! 我将予以更新,以备下一次释放。 (一) 删除这一整段。

关注混乱!

如果设定为<代码>YES,则无需做任何其他事情。

总的说来,这种环境确保,假装的标志不属于分配的双手,从而将文件尺寸减少30-50%。 反之,应当把标记符号写到海关数据系统(DWARF)档案中,后者随后可用于象征坠毁报告。

测试Flight SDK建议将此环境定为NO,而不是YES:

To enable the best crash reporting possible we recommend setting the following project build settings in Xcode to NO for all targets that you want to have live crash reporting for. You can find build settings by opening the Project Navigator (default command+1 or command+shift+j) then clicking on the project you are configuring (usually the first selection in the list). From there you can choose to either change the global project settings or settings on an individual project basis. All settings below are in the Deployment Section.

  • Deployment Postrocessing
  • Strip Debug Symbols During Copy
  • Strip Linked Product

Bugsense(http://www.bugsense.com/pages/faq)也提出这一解释:

Why do I get memory dumps instead of the stack trace for my iOS app?
iOS apps usually don’t include debugging information or this information is included in a special file with the extension dSYM (debugging SYMbols). To turn on (and include in your binary) debugging information for your iOS app you must set to NO a project setting called “Strip Debug Symbols” for all project configurations.





相关问题
How to change out-of-focus text selection color in Xcode?

Okay, I ll bite. I ve got really pleasant code/window colors set up in Xcode. Ordinarily, my selection color is very visible. When I am doing a project search and iterating through the results, ...

Iphone NSTimer Issue

Hi I am new to objective c. I am trying to make an app for iphone. I have a button on my view, and the click on which the function playSound is called. This is working properly. It does plays the ...

Include a .txt file in a .h in C++?

I have a number of places where I need to re-use some template code. Many classes need these items In a .h could I do something like: #include <xxx.txt> and place all of this code in the ....

Iterating over string/strlen with umlauted characters

This is a follow-up to my previous question . I succeeded in implementing the algorithm for checking umlauted characters. The next problem comes from iterating over all characters in a string. I do ...

Xcode open two editor windows with same file

Is it possible to open the same file in two separate windows in Xcode. I can open a file in one window and the same file in the main Xcode editor window, but I wanted two separate fulltime editor ...

Forcing code signing refresh in Xcode

In our environment, we share resources across multiple projects and platforms. When building for iPhone, only a subset of those resources are needed. Since that subset is still considerable, we have ...

热门标签