contributors |
---|
zntfdr |
Maintaining separate frameworks for each platform come with challenges, such as keeping build settings in sync, and ensuring all of your source files are properly added to your compile sources build phases. Introducing Multi-platform frameworks.
- New in Xcode 13
- allow us to consolidate multiple frameworks into one, providing us simplified target management
- one shared set of build phases
- one shared set of build settings
- Open any framework project
- Go to Build Settings tab in the project editor
- Under the Architectures section, configure the framework to build for all platforms (or the platforms you're interested in) by going to the Supported Platforms build setting and choosing Any Platform
- Under the Build Options section, make sure that Allow Multiplatform Builds is set to Yes
This informs the build system to build this target once for each of its supported platforms, as necessary.
If some frameworks files should target only one or a few specific platforms, we can add a platform filter to specify that this file should only build for those platforms.
How to:
- Go to Build Phases tab in the project editor
- Expand the Compile Sources build phase
- For each file, set the proper platform filter (by default all files will be used within all platforms)
For Build Order, we recommend selecting Dependency Order, which will cause targets in your project to build in parallel according to the dependency graph. This can greatly improve multicore build performance and will also get you faster results from continuous integration. In contrast, choosing Manual Order is deprecated and is not recommended. Using this option will slow down your build and can cause cycle errors when the target order listed in the scheme is inconsistent with your project's dependencies.
For Find Implicit Dependencies. Checking this option allows Xcode to automatically add dependencies between targets based on the information in your project, such as linker flags in build settings and the names of linked libraries in build phases. This can be especially useful when the related targets are in different projects where you can't normally add an explicit target dependency.
If we have a script phase that, independently, uses projects files for example for generating code, we should use a build rule instead.
- Go to Build Rules tab in the project editor
- Add a new build rule
- Add the file pattern corresponding to our files we want this rule to process (e.g.,
*.recipe
), we don't need to add any additional inputs to the build rule, because it will automatically get each input file it processes as an input (thanks to this pattern matching). - We need to tell the build system the path of the output file that the rule will produce for each file it processes. Add a new output file in the Output Files section. For example
$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).compiledrecipe
.
- It's best practice to write generated files under
DERIVED_FILE_DIR
, since this will point to an appropriate location managed by the build system. You should avoid generating output files under the source root. This can interfere with source control and lead to conflicts when running multiple builds simultaneously.
- Lastly, we need to move over the script body into the build rule. For Example:
"$SCROOT/Scripts/gen-code.sh" "$SCRIPT_INPUT_FILE" "$SCRIPT_OUTPUT_FILE_0"
- Remember that rules run once for each input they process.
$SCRIPT_INPUT_FILE
corresponds to the absolute file path of the current input file being processed$SCRIPT_OUTPUT_FILE_0
refers to the output file path we entered in the Output Files section
- If the generated code is architecture-independent, uncheck the Run once per architecture option in the build rule
- In order for the rule to work, make sure that your rule input files are listed among the Compiled Sources in the Build Phases tab of your project
When a script phase has no input and output dependencies specified, this might cause build tasks to run in the wrong order and slows down the build because Xcode has to be more conservative with respect to running other tasks in parallel, as it doesn't know what files the script phase may be using.
It's important to add input and output dependencies to ensure the work performed by script phases is done in the correct order relative to other tasks in the build.
If a script phase has a large number of inputs, instead of entering these one by one, I can use an .xcfilelist to manage this list of inputs via an external file. Create one such files: File > New File, and choose Build Phase File List under the Other section.
Important: the build system requires that only one task in the entire build may produce the output at a given path. With multi-platform targets, the script will run for each platform, therefore if the output path is platform-independent, this will fail the build as each platform build will try to write in the same path. To fix this we have two main ways:
- (easy, but wasteful) make sure the output path is platform dependent (e.g., by using
DERIVED_FILE_DIR
). This causes our script to run for each platform, but the output will be in different places. - use aggregate target(s)
The build settings of the target are also made available to the script/build rule phase environment.
There are some crucial environment variables provided for you by the script phase:
// These environment variables are available in script phases:
SCRIPT_INPUT_FILE_COUNT // This specifies the number of paths from the Input Files table.
SCRIPT_INPUT_FILE_n // This specifies the absolute path of the nth file from the Input Files table, with build settings expanded.
SCRIPT_INPUT_FILE_LIST_COUNT // This specifies the number of input file lists.
SCRIPT_INPUT_FILE_LIST_n // This specifies the absolute path of the nth "resolved" input file list with contained paths made absolute, build settings expanded, and comments removed.
SCRIPT_OUTPUT_FILE_COUNT // This specifies the number of paths from the Output Files table.
SCRIPT_OUTPUT_FILE_n // This specifies the absolute path of the nth file from the Output Files table, with build settings expanded.
SCRIPT_OUTPUT_FILE_LIST_COUNT // This specifies the number of output file lists.
SCRIPT_OUTPUT_FILE_LIST_n // This specifies the absolute path of the nth "resolved" output file list with contained paths made absolute, build settings expanded, and comments removed.
* n in the above examples refers to a 0-based index.
And here are the equivalent for build rules:
// These environment variables are available in build rules:
SCRIPT_INPUT_FILE // This specifies the absolute path of the main input file being processed by the rule.
OTHER_INPUT_FILE_FLAGS // This specifies custom command line flags defined for the input file in the Compile Sources build phase.
SCRIPT_INPUT_FILE_COUNT // This specifies the number of paths from the Input Files table.
SCRIPT_INPUT_FILE_n // This specifies the absolute path of the nth file from the Input Files table, with build settings expanded.
SCRIPT_OUTPUT_FILE_COUNT // This specifies the number of paths from the Output Files table.
SCRIPT_OUTPUT_FILE_n // This specifies the absolute path of the nth file from the Output Files table, with build settings expanded.
SCRIPT_HEADER_VISIBILITY // This is set to "public" or "private" if the input file being processed is a header file in a Headers build phase, and its Header Visibility is set to one of those values.
HEADER_OUTPUT_DIR // This specifies the output directory to which the input file should be copied, if the input file being processed is a header file in a Headers build phase.
* n in the above examples refers to a 0-based index.
So what is a build setting? It is a property you can apply to Xcode targets to configure aspects of how they are built.
Xcode provides two main mechanisms for configuring build settings:
- through the build settings editor
- through a configuration settings file or an .xcconfig file
Build settings are defined at multiple levels, which can be visualized by clicking on the Levels filter in the build settings editor.
Each column represents a different level a build setting can be defined in, and they are evaluated from the right to the left. Starting from the lowest (rightmost) level, there are:
- the default value, which is defined by the currently selected SDK
- the project level configuration settings file
- the project level settings from the Xcode project file
- target settings defined in a configuration settings file
- the target level settings defined in your Xcode project file
- the resolved value of the build setting.
Configuration settings file format documentation can be found here.
Advantages:
- Better source control management
- Sharing settings across targets or configurations
- Advanced composition of build settings
- Ability to include additional configuration settings files based on your development or test environment
At its most basic level, a build setting is made up of a name, an assignment operator, and a value:
// Comments are supported, too!
MY_BUILD_SETTING_NAME = "A build setting value"
You can narrow the value of a build setting using the conditional syntax. Conditional settings are defined using square brackets. Some of the supported conditions include configuration, architecture, and SDK:
MY_BUILD_SETTING_NAME[config=Debug] = -debug_flag
MY_BUILD_SETTING_NAME[arch=arm64] = -arm64_only
// wildcards can be used for matching purposes:
MY_BUILD_SETTING_NAME[sdk=iphone*] = -ios_only
A build setting can be set to the value of another build setting by using the dollar-parens syntax:
MY_OTHER_BUILD_SETTING = YES
MY_BUILD_SETTING_NAME = $(MY_OTHER_BUILD_SETTING)
// Multiple values can be evaluated here as well:
MORE_SETTINGS = $(SETTING) $(ANOTHER_SETTING)
// Existing values for a build setting can be used with the $(inherited) value:
APPEND_TO_EXISTING_SETTINGS = $(inherited) -more_flag
// Alternatively, you could obtain the same result with the following:
APPEND_TO_EXISTING_SETTINGS = $(inherited) -more_flag
Another use of the build setting evaluation syntax is to compose build settings together from a set of other build settings:
IS_BUILD_SETTING_ENABLED = NO
MY_BUILD_SETTING_NO = -use_this_one
MY_BUILD_SETTING_YES = -use_this_instead
// Because build setting evaluation happens inside-out, this will evaluate to $(MY_BUILD_SETTING_NO) first, and then to -use_this_one
MY_BUILD_SETTING = $(MY_BUILD_SETTING_$(IS_BUILD_SETTING_ENABLED))
When evaluating a build setting, there are a set of operators you can use to provide some basic transformations of your value.
The three classifications of operators are:
- String operators
Operator | Value | Transformation |
---|---|---|
$(MY_SETTING:quote) |
characters will be "escaped" | characters\ will\ be\ "escaped" |
$(MY SETTING:lower) |
All Caps Will Be lowered | all caps will be lowered |
$(MY_SETTING:upper) |
make it RAIN | MAKE IT RAIN |
$(MY_SETTING:identifier) |
valid c99 identifier | valid_c99_identifier |
$(MY_SETTING:c99extidentifier) |
valid c99 ext identifier | valid_c99_ext_identifier |
$(MY_SETTING:rfc1034identifier) |
A valid RFC1034 identifier | A-valid-RFC1034-identifier |
- Path operators
Operator | Value | Transformation |
---|---|---|
$(MY_PATH:dir) |
/projects/goodies/src/winner.swift |
/projects/goodies/src/ |
$(MY_PATH:file) |
/projects/goodies/src/winner.swift |
winner.swift |
$(MY_PATH:base) |
/projects/goodies/src/winner.swift |
winner |
$(MY_PATH:suffix) |
/projects/goodies/src/winner.swift |
swift |
$(MY_PATH:standardizepath) |
/projects/goodies/src/oops//winner.swift |
/projects/goodies/src/winner.swift |
- Replacement operators
Operator | Value | Transformation |
---|---|---|
$(MY_PATH:dir=/tmp) |
/projects/goodies/src/winner.swift |
/tmp/winner.swift |
$(MY_PATH:file=/better.swift) |
/projects/goodies/src/winner.swift |
better.swift |
$(MY PATH:base=another) |
/projects/goodies/src/winner.swift |
/projects/goodies/src/another.swift |
$(MY_PATH:suffix=m) |
/projects/goodies/src/winner.swift |
/projects/goodies/src/winner.m |
$(MY_PATH:default=YES) |
no value | YES |
$(MY_PATH:default=YES) |
has value | existing value |
the default operator provides the replacement value if the build setting is empty, otherwise it uses the existing value of the build setting
Including other configuration settings files:
// Require the included configuration settings file to exist on disk.
// This will stop the build process if the specified configuration is not found.
#include "path/to/file.xcconfig"
// Allowing for optionally including a configuration settings file:
#include? "path/to/file.xcconfig"
the
include
path is relative from the location of your Xcode project file