All the following compilation options are based on Xcode 4.6. This article is based on Apple Xcode documents, "Professional Xcode 3", and Google search results. I have a little understanding of compilation. Please apologize if there is any inappropriate explanation. In some places where translations may be inappropriate, the original English text is attached.
Architectures Architecture
Additional SDKs
An additional SDK is required during compilation.
Architectures
Supported processor architecture. Different processors correspond to different versions of iPhone.
Among them, the devices that support Armv6 are:
* iPhone1
* iPhone3G
* iPod Touch 1
* iPod Touch 2
Devices that support Armv7 are:
* iPhone 3GS
* iPhone 4
*iPad
* The New iPad
* iPod Touch 3G
* iPod Touch 4
Devices that support Armv7s are:
* iPhone5
iPhone is backward compatible with instruction sets. Higher versions of iPhones can run lower versions of instruction sets. Therefore, to adapt to the full range of iPhones, Architectures should choose Armv6.
Base SDK
This determines the highest iOS version that your app can support. If you choose iOS 6.1, your app can only be installed by systems below iOS 6. Xcode is set to the latest version that can be supported by default.
Build Active Architecture Only
If this entry is YES, Xcode will only compile the corresponding Architecture into the app according to the device version. If you connect to iPhone4 for compilation and Build Active Architecture Only is YES, only Armv7 binary files will be built during compilation. If the iPhone 5 is connected, build the binary file of Armv7s.
This option defaults to YES when Debug, and NO when Release. This makes the compilation time faster than Release during Debug, making it more convenient to debug.
Supported Platforms
The platforms supported by the app include iOS and OSX options.
Valid Architectures
The architecture that the app is expected to be applied to. The default value is the same as Architectures. This option allows you to only package the Armv7s architecture when compiling, but is compatible with Armv6 and Armv7.
Build Locations
Build Products Path
The root directory of product files and compilation intermediate files. Both product files and compile-time temporary files will be placed in a subdirectory of this directory.
Intermediate Build Files Path
The storage location of temporary files during compilation. The format of the compilation intermediate file is product name+.build, such as.
Per-configuration Build Product Path
Directory path. Identifies the directory that holds temporary files for the active build configuration.
The product storage location under the current compilation settings.
Per-configuration Intermediate File Path
Directory path. Identifies the directory that holds temporary files for the active build configuration.
The storage location of temporary files during compilation under the current compilation settings.
Precompiled Headers Cache Path
Directory path. Specifies the directory in which to place precompiled headers. Targets can share precompiled headers by specifying the same value for this build setting.
The location where precompiled header files are stored. With this configuration, Targets can share precompiled header files with each other.
Build Options
Build Variants
Space-separated list of identifiers. Specifies the binary variants of the product. You can create additional variant names for special purposes. For example, you can use the name of a build configuration as a variant name to create highly customized binaries.
Values:
normal: Use to produce a normal binary.
profile: Use to produce a binary that generates profile information.
debug: Use to produce a binary with debug symbols, additional assertions, and diagnostic code.
This item can set the variant of the generated product. You can create additional product variants for special purposes. For example, you can use the name of the compiled configuration file to create a highly customized binary file.
There are three values for Build Variants:
normal- Used to generate normal binary files
profile - A binary file that can generate configuration information
debug - Used to generate binary files with debug flags, additional assertions and diagnostic code
Compiler for C/C++/Object-C
Select the compiler to use. Xcode comes with two options, Apple LLVM and LLVM GCC. It is recommended to use the default option ----Apple LLVM.
Debug Information Format
This option determines the file format for recording debug information. Options are DWARF with dSYM File and DWARF. It is recommended to choose DWARF with dSYM File. DWARF is an older file format that writes debug information in the execution file at compile time.
Generate Profiling Code
Whether to generate configuration code. NO is selected by default.
Precompiled Header Uses Files From Build Directory
PrecompiledbuildHeader file in path。 Because the compilation process is time-consuming, and all files may not be changed between compilations. Therefore, retaining common files that are not changed into precompiled files will greatly reduce the time of compilation. Suggest this optionYES。
Run Static Analyzer
Run the static analyzer.
Scan All Source Files for Includes
Scan all source files included in the include file.
Validate Built Product
This option determines whether to verify it at compile time. The verified content is consistent with the review content of the app store. The default option is to not verify when debugging, and to verify when releasing, which ensures that each release version will pass validate, allowing the risk of being rejected to be exposed before submitting the app store, reducing losses.
Notice:
1. This option is only valid when connecting to a real machine. Invalid when using the emulator. However, I tried it with a real machine and it seems that I didn't check the private API in the code.
2. If you want to manually validate, you can find the Archive that needs to be checked in Organizer->Archives and click the Validate button. This check seems more reliable, and can detect illegal operations such as private APIs.