From 40a873ac96ca1c7ed4f94c9ea585f6947037e35c Mon Sep 17 00:00:00 2001 From: Jakub Latusek Date: Tue, 25 Jun 2024 13:31:44 +0200 Subject: [PATCH] Update docs --- docs/guides/BUILDING.md | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/docs/guides/BUILDING.md b/docs/guides/BUILDING.md index 7cd660227ed165..9921f2f63d9d8a 100644 --- a/docs/guides/BUILDING.md +++ b/docs/guides/BUILDING.md @@ -8,7 +8,7 @@ that generates inputs to [ninja](https://ninja-build.org/). The build system has been tested on the following Operating Systems: -- macOS 10.15 +- macOS 13 - Debian 11 (64 bit required) - Ubuntu 22.04 LTS @@ -107,7 +107,20 @@ sudo apt-get install libsdl2-dev ### Installing prerequisites on macOS -On macOS, install Xcode from the Mac App Store. +On macOS, install Xcode from the Mac App Store. After installing Xcode, install python3.11 using brew: + +``` sh + brew install python@3.11 + python3 -m pip install --upgrade setuptools + python3 -m pip install --upgrade pip + cd /usr/local/bin + ln -sf python3.11 python3 + ln -sf python3 python + ln -sf pip3.11 pip3 + ln -sf pip3 pip + + +``` #### UI builds