Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions book/src/build_and_install.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@ Follow the Ubuntu 24.04 instructions, but omit `software-properties-common` whic
Install the [Xcode Command Line Tools](https://developer.apple.com/downloads/) and the LLVM toolchain using [Homebrew](https://brew.sh):

```bash
brew install llvm@21 gnu-getopt lit
brew install llvm@21 lld gnu-getopt lit
```

After installation, ensure the Homebrew binaries are in your PATH:

```bash
echo 'export PATH="/opt/homebrew/opt/llvm@21/bin:$PATH"' >> ~/.zshrc
echo 'export PATH="/opt/homebrew/opt/gnu-getopt/bin:$PATH"' >> ~/.zshrc
echo 'export PATH="/opt/homebrew/opt/llvm@21/bin:$PATH"' >> ~/.zprofile
echo 'export PATH="/opt/homebrew/opt/gnu-getopt/bin:$PATH"' >> ~/.zprofile
```

The `lit` test suite expects `FileCheck-21` to be available. If not present, create a symlink:
Expand Down
Loading