文章目錄
- What is a ‘framework’ and why are they useful?
- What is a ‘universal’ framework?
- Building a ‘universal’ framework
Apple has invested quite a bit of time into making it easy to compile for a number of different architectures in XCode. For instance, compiling a library into itsarmv6,
armv7, and
i386 variants is just a matter of specifying the supported architecture types. However, there isn’t a built-in mechanism to take the binaries built for the various architectures and merge them into a universal iOS
framework.
Before we go through the steps of building a universal iOS framework we should first reviewwhat a framework is and
why they are useful.
What is a ‘framework’ and why are they useful?
Apple defines a framework as:
… a hierarchical directory that encapsulates shared resources, such as a dynamic shared library, nib files, image files, localized strings, header files, and reference documentation in a single package.
So instead of having header files and binaries in disperate locations a
framework brings everything together into one package (a directory with a known structure). Packaging a library as a framework simplifies things for developers because it not only provides a binary to link against but it includes all of the necessary header
files to reference as well.
What is a ‘universal’ framework?
A universal framework can be defined as a framework that contains a binary which has been built for a number of architectures (armv6, armv7, i386) and can bestatically1
linked against. This is particularly useful in iOS development because an application can be built for the simulator (i386) and the device (armv6, armv7).
1 Statically linking a library resolves symbols at compile time and embeds the library into the application. It is not possible, currently, to create a dynamic framework for iOS.
Building a ‘universal’ framework
Firstly, there is a project called
iOS Universal Framework that simplifies the process of building a universal framework by providing an XCode template. However, I think it is still a meaningful exercise to understandhow a universal framework is built using XCode.
Lets get started:
Create a new project
- File -> New -> New Project (Command-Shift-N)
- Select Frameworks & Libraries under iOS
- Select “Cocoa Touch Static Library” and click “Next”
- Provide a name for the library
Configure architectures
By default the static library is configured to only build for armv7 so we need to add armv6 and i386 to ensure that the static library is built for older devices (iPhone 3G/Original, early generation iPod Touch) and the simulator.
Create aggregate target
An aggregate target aggregates other targets together. In effect, it wraps a number of script executables and copy file tasks in a specified order.
- File -> New Target
- Select “Other” under iOS
- Select “Aggregate”
- Give it a name (MyLibrary-iOS for example)
Build static libraries
Under the “Build Phases” section of the aggregate target we are going to add a build phase that compiles a static library for i386 andARM. In the next step we’ll merge the binaries into a fat binary.
- Select MyLibrary-iOS target
- Select “Build Phases”
- Click “Add Build Phase”
- Select “Add Run Script”
- Name it “Build Static Libs”
12 3 |
xcodebuild -project ${PROJECT_NAME}.xcodeproj -sdk iphonesimulator -target ${PROJECT_NAME} -configuration ${CONFIGURATION} clean build CONFIGURATION_BUILD_DIR=${BUILD_DIR}/${CONFIGURATION}-iphonesimulator xcodebuild -project ${PROJECT_NAME}.xcodeproj -sdk iphoneos -target ${PROJECT_NAME} -configuration ${CONFIGURATION} clean build CONFIGURATION_BUILD_DIR=${BUILD_DIR}/${CONFIGURATION}-iphoneos |
view rawgistfile1.sh
This Gist brought to you byGitHub.
Build universal binary
We are going to add another “Run Script” phase that builds the framework itself. The script is going to:
Create a directory structure that mimics the same directory structure seen in Apple’s dynamic frameworks:
SIMULATOR_LIBRARY_PATH="${BUILD_DIR}/${CONFIGURATION}-iphonesimulator/lib${PROJECT_NAME}.a" &&DEVICE_LIBRARY_PATH="${BUILD_DIR}/${CONFIGURATION}-iphoneos/lib${PROJECT_NAME}.a" &&UNIVERSAL_LIBRARY_DIR="${BUILD_DIR}/${CONFIGURATION}-iphoneuniversal" &&UNIVERSAL_LIBRARY_PATH="${UNIVERSAL_LIBRARY_DIR}/${PRODUCT_NAME}" &&FRAMEWORK="${UNIVERSAL_LIBRARY_DIR}/${PRODUCT_NAME}.framework" && # Create framework directory structure.rm -rf "${FRAMEWORK}" &&mkdir -p "${UNIVERSAL_LIBRARY_DIR}" &&mkdir -p "${FRAMEWORK}/Versions/A/Headers" &&mkdir -p "${FRAMEWORK}/Versions/A/Resources" &&
Merge the static libraries built for the various architectures into a fat binary using a tool calledlipo:
# Generate universal binary for the device and simulator.lipo "${SIMULATOR_LIBRARY_PATH}" "${DEVICE_LIBRARY_PATH}" -create -output "${UNIVERSAL_LIBRARY_PATH}" &&
Move the appropriate files into place:
# Move files to appropriate locations in framework paths.cp "${UNIVERSAL_LIBRARY_PATH}" "${FRAMEWORK}/Versions/A" &&ln -s "A" "${FRAMEWORK}/Versions/Current" &&ln -s "Versions/Current/Headers" "${FRAMEWORK}/Headers" &&ln -s "Versions/Current/Resources" "${FRAMEWORK}/Resources" &&ln -s "Versions/Current/${PRODUCT_NAME}" "${FRAMEWORK}/${PRODUCT_NAME}"
The full script can be found here.
Copy header files into place
- Select “Add Build Phase”
- Click “Add Copy Files”
- Set “Destination” to “Absolute Path”
- Set subpath to
${BUILD_DIR}/${CONFIGURATION}-iphoneuniversal/${PRODUCT_NAME}.framework/Versions/A/Headers/
- Add header files that should be public to the list
Configure aggregate target build against the ‘Release’ configuration
- Product -> Edit Scheme
- Choose aggregate target (MyLibrary-iOS)
- Select “Run”
- Choose “Release” under Build Configuration
Build and verify framework
- Select aggregate target
- Build it (Command-B)
Verify that the binary was built for the correct architectures using lipo:
lipo -info build/Release-iphoneuniversal/MyLibrary-iOS.framework/MyLibrary-iOS Architectures in the fat file: build/Release-iphoneuniversal/MyLibrary-iOS.framework/MyLibrary-iOS are: i386 armv6 armv7
Ensure that the header files are copied into place (XCode is known to mess this up on occasion):
tree build/Release-iphoneuniversal/MyLibrary-iOS.framework/build/Release-iphoneuniversal/MyLibrary-iOS.framework/├── Headers -> Versions/Current/Headers├── MyLibrary-iOS -> Versions/Current/MyLibrary-iOS├── Resources -> Versions/Current/Resources└── Versions ├── A │ ├── Headers │ │ └── MyLibrary.h │ ├── MyLibrary-iOS │ └── Resources └── Current -> A 7 directories, 3 files