Because UTM is a sand-boxed Mac app, there are a few extra steps needed for a proper development environment.
Make sure you perform a recursive clone to get all the submodules:
git clone --recursive https://github.com/utmapp/UTM.git
Alternatively, run git submodule update --init --recursive
after cloning if you did not do a recursive clone.
The easy way is to get the prebuilt dependences from Github Actions. Pick the latest release and download all of the Sysroot-macos-*
artifacts. You need to be logged in to Github to download artifacts. If you only intend to run locally, it is alright to just download the sysroot for your architecture.
If you want to build the dependencies yourself, it is highly recommended that you start with a fresh macOS VM. This is because some of the dependencies attempt to use /usr/local/lib
even though the architecture does not match. Certain installed packages like libusb
, gawk
, and cmake
will break the build.
- Install Xcode command line and Homebrew
- Install the following build prerequisites
brew install bison pkg-config gettext glib libgpg-error nasm make meson
Make sure to addbison
andgettext
to your$PATH
environment variable!export PATH=/usr/local/opt/bison/bin:/usr/local/opt/gettext/bin:$PATH
- Run
./scripts/build_dependencies.sh -p macos -a ARCH
whereARCH
is eitherarm64
orx86_64
.
If you want to build universal binaries, you need to run build_dependencies.sh
for both arm64
and x86_64
and then run
./scripts/pack_dependencies.sh . macos arm64 x86_64
If you are developing QEMU and wish to pass in a custom path to QEMU, you can use the -q PATH_TO_QEMU_SOURCE
option to build_dependencies.sh
. Note that you need to use a UTM compatible fork of QEMU.
You can build UTM with the script:
./scripts/build_utm.sh -t TEAMID -p macos -a ARCH -o /path/to/output/directory
ARCH
can be x86_64
or arm64
or "arm64 x86_64"
(quotes are required) for a universal binary. The built artifact is an unsigned .xcarchive
which you can use with the package tool (see below).
TEAMID
is optional and only used if you are going to sign it.
Artifacts built with build_utm.sh
(includes Github Actions artifacts) must be re-signed before it can be used. To properly use all features, you must be a paid Apple Developer with access to a provisioning profile with the Hypervisor entitlements. However, non-registered developers can build "unsigned" packages which lack certain features (such as USB and network bridging support).
./scripts/package_mac.sh unsigned /path/to/UTM.xcarchive /path/to/output
This builds UTM.dmg
in /path/to/output
which can be installed to /Applications
.
./scripts/package_mac.sh developer-id /path/to/UTM.xcarchive /path/to/output TEAM_ID PROFILE_UUID HELPER_PROFILE_UUID LAUNCHER_PROFILE_UUID
To build a signed package, you need to be a registered Apple Developer. From the developer portal, create a certificate for "Developer ID Application" (and install it into your Keychain). Also create three provisioning profiles with that certificate with Hypervisor entitlements (you need to manually request these entitlements and be approved by Apple) for UTM, QEMUHelper, and QEMULauncher. TEAM_ID
should be the same as in the certificate, PROFILE_UUID
should be the UUID of the profile installed by Xcode (open the profile in Xcode), and HELPER_PROFILE_UUID
is the UUID of a separate profile for the XPC helper. LAUNCHER_PROFILE_UUID
is the UUID of a profile for the launcher.
Once properly signed, you can ask Apple to notarize the DMG.
./scripts/package_mac.sh app-store /path/to/UTM.xcarchive /path/to/output TEAM_ID PROFILE_UUID HELPER_PROFILE_UUID LAUNCHER_PROFILE_UUID
Similar to the above but builds a UTM.pkg
for submission to the Mac App Store. You need a certificate for "Apple Distribution" and a certificate for "Mac App Distribution" as well as a provisioning profile with the right entitlements.
To build the Xcode project without a registered developer account, you will need to disable USB and bridged networking support.
- Open
Platform/macOS/macOS.entitlements
and delete the entry forcom.apple.vm.device-access
. - Open
QEMUHelper/QEMUHelper.entitlements
and delete the entry forcom.apple.vm.networking
. - Open
QEMULauncher/QEMULauncher.entitlements
and delete the entry forcom.apple.vm.networking
. - In the project settings, select the "macOS" target and go to the "Signing & Capabilities" tab and check the box for "Disable Library Validation".
- Repeat step 4 for the "QEMUHelper" target.
- Repeat step 4 for the "QEMULauncher" target.
You should now be able to run and debug UTM. If you have a registered developer account with access to Hypervisor entitlements, you should create a CodeSigning.xcconfig
file with the proper values (see CodeSigning.xcconfig.sample
). Otherwise, the build will default to ad-hoc signing.
Note that due to a macOS bug, you may get a crash when launching a VM with the debugger attached. The workaround is to start UTM with the debugger detached and attach the debugger with Debug -> Attach to Process after launching a VM. Once you do that, you can start additional VMs without any issues with the debugger.