4
  1. “复制期间剥离调试符号”和“剥离链接产品”选项有什么区别?

  2. 如果“在复制期间去除调试符号”= YES 并且“去除链接产品”= NO,这意味着什么?

  3. 是否可以使用单独的 .dsym 文件(而不是二进制文件)上的符号数据将应用程序上传到 App Store?

4

2 回答 2

0

来自苹果文档:

在复制期间去除调试符号

说明:布尔值。指定复制的二进制文件是否去除调试符号。

Values:
YES: Copied binaries are stripped of debugging symbols. This does not cause the binary produced by the linker to be stripped. Use "Strip Linked Product" to have the linker strip the binary.
NO: Copied binaries are not stripped of debugging symbols
Default value: NO

条形链接产品

说明:布尔值。指定是否从二进制文件中去除符号信息。

Values:
YES: Strips the generated binary when the prerequisite is met.
NO: Does not strip the generated binary.
Default value: NO

https://developer.apple.com/library/archive/documentation/DeveloperTools/Reference/XcodeBuildSettingRef/1-Build_Setting_Reference/build_setting_ref.html

于 2022-02-11T07:33:54.617 回答
-7

在新项目的最新版本 xCode 上,默认选项运行良好。因此,不再需要更改它们。

于 2014-01-04T11:55:43.983 回答