aboutsummaryrefslogtreecommitdiff
path: root/docs/README.macOS.md
diff options
context:
space:
mode:
authorMarkus Härer <markus.haerer@gmx.net>2023-05-07 19:35:29 +0200
committerMarkus Härer <markus.haerer@gmx.net>2023-06-04 14:20:06 +0200
commit5576fff0b58c52c53309d7efe26491c23efa6966 (patch)
tree5d8974c4fa5595903e6180bdaa548fe00de3dd10 /docs/README.macOS.md
parent35be40daa39965a9ea5b3569eb7d515e6a14da5d (diff)
[osx] Raise min OSX version to 10.14 for x86_64
Required for c++17 features used by flatbuffers.
Diffstat (limited to 'docs/README.macOS.md')
-rw-r--r--docs/README.macOS.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/README.macOS.md b/docs/README.macOS.md
index 02913a9ae5..06bae03334 100644
--- a/docs/README.macOS.md
+++ b/docs/README.macOS.md
@@ -56,7 +56,7 @@ Several different strategies are used to draw your attention to certain pieces o
## 2. Prerequisites
* **[Java Development Kit (JDK)](http://www.oracle.com/technetwork/java/javase/downloads/index.html)**
* **[Xcode](https://developer.apple.com/xcode/)**. Install it from the AppStore or from the **[Apple Developer Homepage](https://developer.apple.com/)**.
-* Device with **OSX 10.13 or newer** to run Kodi after build.
+* Device with **OSX 10.14 or newer** to run Kodi after build.
Building for OSX/macOS should work with the following constellations of Xcode and OSX/macOS versions:
* Xcode 12.4 against MacOSX SDK 11.1 on 10.15.7 (Catalina)(recommended)(CI)
@@ -109,9 +109,9 @@ make -j$(getconf _NPROCESSORS_ONLN)
**WARNING:** Look for the `Dependencies built successfully.` success message. If in doubt run a single threaded `make` command until the message appears. If the single make fails, clean the specific library by issuing `make -C target/<name_of_failed_lib> distclean` and run `make`again.
-**NOTE:** **Advanced developers** may want to specify an SDK version (if multiple versions are installed) in the configure line(s) shown above. The example below would use SDK 10.13:
+**NOTE:** **Advanced developers** may want to specify an SDK version (if multiple versions are installed) in the configure line(s) shown above. The example below would use SDK 10.14:
```
-./configure --host=x86_64-apple-darwin --with-platform=macos --with-sdk=10.13
+./configure --host=x86_64-apple-darwin --with-platform=macos --with-sdk=10.14
```
Developers can also select native windowing/input handling with the following
@@ -260,10 +260,10 @@ cd $HOME/kodi-build
Generate Xcode project (x86_64 intel):
```
-/Users/Shared/xbmc-depends/x86_64-darwin17.5.0-native/bin/cmake -G Xcode -DCMAKE_TOOLCHAIN_FILE=/Users/Shared/xbmc-depends/macosx10.13_x86_64-target-debug/share/Toolchain.cmake ../kodi
+/Users/Shared/xbmc-depends/x86_64-darwin17.5.0-native/bin/cmake -G Xcode -DCMAKE_TOOLCHAIN_FILE=/Users/Shared/xbmc-depends/macosx10.14_x86_64-target-debug/share/Toolchain.cmake ../kodi
```
-**WARNING:** The toolchain file location differs depending on SDK version. You have to replace `x86_64-darwin17.5.0-native` and `macosx10.13_x86_64-target-debug` in the paths above with the correct ones on your system.
+**WARNING:** The toolchain file location differs depending on SDK version. You have to replace `x86_64-darwin17.5.0-native` and `macosx10.14_x86_64-target-debug` in the paths above with the correct ones on your system.
You can check `Users/Shared/xbmc-depends` directory content with:
```