To build the runtime repo on macOS, you will need to install the Xcode developer tools and a few other dependencies, described in the sections below.
- Install Apple Xcode developer tools from the Mac App Store.
- Configure the Xcode command line tools. You can do this via one of these two methods:
- Run Xcode, open Preferences, and on the Locations tab, change
Command Line Tools
to point to this installation of Xcode.app. This usually comes already done by default, but it's always good to ensure. - Alternately, you can run
sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer
in a terminal. This command assumes your Xcode app is namedXcode.app
as it comes by default. If you've renamed it to something else, adjust the path accordingly, then run the command.
- Run Xcode, open Preferences, and on the Locations tab, change
To build the runtime repo, you will also need to install the following dependencies:
CMake
3.20 or newericu4c
[email protected]
oropenssl@3
pkg-config
python3
ninja
(This one is optional. It is an alternative tool tomake
for building native code)
You can install them separately, or you can alternatively opt to install Homebrew and use the Brewfile
provided by the repo, which takes care of everything for you. If you go by this route, once you have Homebrew up and running on your machine, run the following command from the root of the repo to download and install all the necessary dependencies at once:
brew bundle --no-lock --file eng/Brewfile