diff options
author | Rechi <Rechi@users.noreply.github.com> | 2020-02-10 19:22:07 +0100 |
---|---|---|
committer | Rechi <Rechi@users.noreply.github.com> | 2020-02-10 19:22:07 +0100 |
commit | 16c02d781e155270f6bcaa35dc3db8eb0b528a5c (patch) | |
tree | 28fd056bafa84ed6f742fd2b69c932a42b8d159e /docs/README.macOS.md | |
parent | 5d24051b2f4e761f65233a94f769a7555103897c (diff) |
[osx] drop i386 support
Since OSX 10.8 (Mountain Lion) the operating system is x86_64 so there is no need for an i386 Kodi application.
Diffstat (limited to 'docs/README.macOS.md')
-rw-r--r-- | docs/README.macOS.md | 18 |
1 files changed, 3 insertions, 15 deletions
diff --git a/docs/README.macOS.md b/docs/README.macOS.md index 6cf9693752..1138651018 100644 --- a/docs/README.macOS.md +++ b/docs/README.macOS.md @@ -82,20 +82,13 @@ Kodi can be built as either a 32bit or 64bit program. The dependencies are built **TIP:** Look for comments starting with `Or ...` and only execute the command(s) you need. -Configure build for 64bit (**recommended**): +Configure build: ``` cd $HOME/kodi/tools/depends ./bootstrap ./configure --host=x86_64-apple-darwin ``` -Or configure build for 32bit: -``` -cd $HOME/kodi/tools/depends -./bootstrap -./configure --host=i386-apple-darwin -``` - Build tools and dependencies: ``` make -j$(getconf _NPROCESSORS_ONLN) @@ -166,17 +159,12 @@ Change to build directory: cd $HOME/kodi-build ``` -Generate Xcode project for 64bit (**recommended**): +Generate Xcode project: ``` /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 ``` -Or generate Xcode project for 32bit: -``` -/Users/Shared/xbmc-depends/x86_64-darwin17.5.0-native/bin/cmake -G Xcode -DCMAKE_TOOLCHAIN_FILE=/Users/Shared/xbmc-depends/macosx10.13_i386-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` or `macosx10.13_i386-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.13_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: ``` |