[filesystem][SpecialProtocol] Removed assert from GetPath
[xbmc.git] / docs / README.Linux.md
blob8c1946a2250884a8f13193cfe488c8fefbf724fa
1 ![Kodi Logo](resources/banner_slim.png)
3 # Linux build guide
4 This is the general Linux build guide. Please read it in full before you proceed to familiarize yourself with the build procedure.
6 Several distribution **[specific build guides](README.md)** are available.
8 ## Table of Contents
9 1. **[Document conventions](#1-document-conventions)**
10 2. **[Get the source code](#2-get-the-source-code)**
11 3. **[Install the required packages](#3-install-the-required-packages)**  
12   3.1. **[Build missing dependencies](#31-build-missing-dependencies)**  
13   3.2. **[Enable internal dependencies](#32-enable-internal-dependencies)**
14 4. **[Build Kodi](#4-build-kodi)**  
15   4.1. **[Configure build](#41-configure-build)**  
16   4.2. **[Build](#42-build)**
17 5. **[Build binary add-ons](#5-build-binary-add-ons)**  
18   5.1. **[In-tree building of binary add-ons](#51-in-tree-building-of-binary-add-ons)**  
19   5.2. **[Out-of-tree building of binary add-ons](#52-out-of-tree-building-of-binary-add-ons)**
20 6. **[Run Kodi](#6-run-kodi)**
21 7. **[Uninstall Kodi](#7-uninstall-kodi)**
22 8. **[Test suite](#8-test-suite)**
24 ## 1. Document conventions
25 This guide assumes you are using `terminal`, also known as `console`, `command-line` or simply `cli`. Commands need to be run at the terminal, one at a time and in the provided order.
27 This is a comment that provides context:
28 ```
29 this is a command
30 this is another command
31 and yet another one
32 ```
34 **Example:** Clone Kodi's current master branch:
35 ```
36 git clone https://github.com/xbmc/xbmc kodi
37 ```
39 Commands that contain strings enclosed in angle brackets denote something you need to change to suit your needs.
40 ```
41 git clone -b <branch-name> https://github.com/xbmc/xbmc kodi
42 ```
44 **Example:** Clone Kodi's current Krypton branch:
45 ```
46 git clone -b Krypton https://github.com/xbmc/xbmc kodi
47 ```
49 Several different strategies are used to draw your attention to certain pieces of information. In order of how critical the information is, these items are marked as a note, tip, or warning. For example:
51 **NOTE:** Linux is user friendly... It's just very particular about who its friends are.  
52 **TIP:** Algorithm is what developers call code they do not want to explain.  
53 **WARNING:** Developers don't change light bulbs. It's a hardware problem.
55 **[back to top](#table-of-contents)** | **[back to section top](#1-document-conventions)**
57 ## 2. Get the source code
58 First install the `git` package provided by your distribution. How to do it can be found with a quick search in your favorite search engine.
60 Change to your `home` directory:
61 ```
62 cd $HOME
63 ```
65 Clone Kodi's current master branch:
66 ```
67 git clone https://github.com/xbmc/xbmc kodi
68 ```
70 **[back to top](#table-of-contents)**
72 ## 3. Install the required packages
73 The following is the list of packages that are used to build Kodi on Debian/Ubuntu (with all supported external libraries enabled).
75 **NOTE:** Kodi requires a compiler with C++17 support, i.e. gcc >= 7 or clang >= 5
77 * autoconf, automake, autopoint, gettext, autotools-dev, cmake, curl, default-jre | openjdk-6-jre | openjdk-7-jre, gawk, gcc (>= 7) | gcc-7, g++ (>= 7) | g++-7, cpp (>= 7) | cpp-7, flatbuffers, gdc, gperf, libasound2-dev | libasound-dev, libass-dev (>= 0.9.8), libavahi-client-dev, libavahi-common-dev, libbluetooth-dev, libbluray-dev, libbz2-dev, libcdio-dev, libcec4-dev | libcec-dev, libp8-platform-dev, libcrossguid-dev, libcurl4-openssl-dev | libcurl4-gnutls-dev | libcurl-dev, libcwiid-dev, libdbus-1-dev, libegl1-mesa-dev, libenca-dev, libflac-dev, libfontconfig-dev, libfmt3-dev | libfmt-dev, libfreetype6-dev, libfribidi-dev, libfstrcmp-dev, libgcrypt-dev, libgif-dev (>= 5.0.5), libgles2-mesa-dev [armel] | libgl1-mesa-dev | libgl-dev, libglew-dev, libglu1-mesa-dev | libglu-dev, libgnutls-dev | libgnutls28-dev, libgpg-error-dev, libgtest-dev, libiso9660-dev, libjpeg-dev, liblcms2-dev, liblirc-dev, libltdl-dev, liblzo2-dev, libmicrohttpd-dev, libmysqlclient-dev, libnfs-dev, libogg-dev, libomxil-bellagio-dev [armel], libpcre3-dev, libplist-dev, libpng12-dev | libpng-dev, libpulse-dev, libshairplay-dev, libsmbclient-dev, libspdlog-dev, libsqlite3-dev, libssl-dev, libtag1-dev (>= 1.8) | libtag1x8, libtiff5-dev | libtiff-dev | libtiff4-dev, libtinyxml-dev, libtool, libudev-dev, libunistring-dev, libva-dev, libvdpau-dev, libvorbis-dev, libxkbcommon-dev, libxmu-dev, libxrandr-dev, libxslt1-dev | libxslt-dev, libxt-dev, waylandpp-dev | netcat, wayland-protocols | wipe, lsb-release, meson (>= 0.47.0), nasm (>= 2.14), ninja-build, python3-dev, python3-pil | python-imaging, python-support | python3-minimal, rapidjson-dev, swig, unzip, uuid-dev, zip, zlib1g-dev
79 ### 3.1. Build missing dependencies
80 Some packages may be missing or outdated in older distributions. Notably `crossguid`, `libfmt`, `libspdlog`, `waylandpp`, `wayland-protocols`, etc. are known to be outdated or missing. Fortunately there is an easy way to build individual dependencies with **[Kodi's unified depends build system](../tools/depends/README.md)**.
82 Change to Kodi's source code directory:
83 ```
84 cd $HOME/kodi
85 ```
87 Build and install crossguid:
88 ```
89 sudo make -C tools/depends/target/crossguid PREFIX=/usr/local
90 ```
92 Build and install flatbuffers:
93 ```
94 sudo make -C tools/depends/target/flatbuffers PREFIX=/usr/local
95 ```
97 Build and install libfmt:
98 ```
99 sudo make -C tools/depends/target/fmt PREFIX=/usr/local
102 Build and install libspdlog:
104 sudo make -C tools/depends/target/spdlog PREFIX=/usr/local
107 Build and install wayland-protocols:
109 sudo make -C tools/depends/target/wayland-protocols PREFIX=/usr/local
112 Build and install waylandpp:
114 sudo make -C tools/depends/target/waylandpp PREFIX=/usr/local
117 **WARNING:** Building `waylandpp` has some dependencies of its own, namely `scons, libwayland-dev (>= 1.11.0) and libwayland-egl1-mesa`
119 **TIP:** Complete list of dependencies is available **[here](https://github.com/xbmc/xbmc/tree/master/tools/depends/target)**.
121 ### 3.2. Enable internal dependencies
122 Some dependencies can be configured to build before Kodi. That's the case with `flatbuffers`, `crossguid`, `fmt`, `spdlog`, `rapidjson`, `fstrcmp` and `dav1d`. To enable the internal build of a dependency, append `-DENABLE_INTERNAL_<DEPENDENCY_NAME>=ON` to the configure command below. For example, configuring an X11 build with internal `fmt` would become `cmake ../kodi -DCMAKE_INSTALL_PREFIX=/usr/local -DENABLE_INTERNAL_FMT=ON` instead of `cmake ../kodi -DCMAKE_INSTALL_PREFIX=/usr/local`.
123 Internal dependencies that are based on cmake upstream (currently crossguid, ffmpeg, fmt, spdlog) can have their build type overridden by defining `-D<DEPENDENCY_NAME>_BUILD_TYPE=<buildtype>`. Build Type can be one of `Release, RelWithDebInfo, Debug, MinSizeRel`. eg `-DFFMPEG_BUILD_TYPE=RelWithDebInfo`. If not provided, the build type will be the same as the core Kodi project.
125 **Note:** fstrcmp requires libtool
127 **[back to top](#table-of-contents)** | **[back to section top](#3-install-the-required-packages)**
129 ## 4. Build Kodi
130 ### 4.1. Configure build
131 If you get a `Could NOT find...` error message during CMake configuration step, take a note of the missing dependencies and either install them from repositories (if available) or **[build the missing dependencies manually](#31-build-missing-dependencies)**.
133 Create an out-of-source build directory:
135 mkdir $HOME/kodi-build
138 **TIP:** Look for comments starting with `Or ...` and only execute the command(s) you need.
140 Change to build directory:
142 cd $HOME/kodi-build
145 Configure build for X11:
147 cmake ../kodi -DCMAKE_INSTALL_PREFIX=/usr/local -DCORE_PLATFORM_NAME=x11 -DAPP_RENDER_SYSTEM=gl
150 **NOTE:** You can use `gles` instead of `gl` if you want to build with `GLES`.
152 Or configure build for Wayland:
154 cmake ../kodi -DCMAKE_INSTALL_PREFIX=/usr/local -DCORE_PLATFORM_NAME=wayland -DAPP_RENDER_SYSTEM=gl
157 **NOTE:** You can use `gles` instead of `gl` if you want to build with `GLES`.
159 Or configure build for GBM:
161 cmake ../kodi -DCMAKE_INSTALL_PREFIX=/usr/local -DCORE_PLATFORM_NAME=gbm -DAPP_RENDER_SYSTEM=gles
164 **NOTE:** You can use `gl` instead of `gles` if you want to build with `GL`.
166 Or configure build with any combination of the three (default is "x11 wayland gbm"):
168 cmake ../kodi -DCMAKE_INSTALL_PREFIX=/usr/local -DCORE_PLATFORM_NAME="x11 wayland gbm" -DAPP_RENDER_SYSTEM=gl
171 **NOTE:** You can use `gles` instead of `gl` if you want to build with `GLES`.
174 **NOTE:** You can use several alternative linkers if available on your system: gnu gold (default), llvm lld or mold
176 To use an alternative linker, enable it with `-DENABLE_GOLD=ON` or `-DENABLE_LLD=ON` or `-DENABLE_MOLD=ON`
179 ### 4.2. Build
181 cmake --build . -- VERBOSE=1 -j$(getconf _NPROCESSORS_ONLN)
183 **TIP:** By adding `-j<number>` to the make command, you can choose how many concurrent jobs will be used and expedite the build process. It is recommended to use `-j$(getconf _NPROCESSORS_ONLN)` to compile on all available processor cores. The build machine can also be configured to do this automatically by adding `export MAKEFLAGS="-j$(getconf _NPROCESSORS_ONLN)"` to your shell config (e.g. `~/.bashrc`).
185 After the build process completes successfully you can test your shiny new Kodi build while in the build directory:
187 ./kodi-x11
190 Or if you built for Wayland:
192 ./kodi-wayland
195 Or if you built for GBM:
197 ./kodi-gbm
200 **WARNING:** User running `kodi-gbm` needs to be part of `input` and `video` groups. Otherwise you'll have to use `sudo`.
202 Add user to input and video groups:
204 sudo usermod -a -G input,video <username>
207 You will need to log out and log back in to see the new groups added to your user. Check groups your user belongs to with:
209 groups
212 If everything was OK during your test you can now install the binaries to their place, in this example */usr/local*.
214 sudo make install
217 This will install Kodi in the prefix provided in **[section 4.1](#41-configure-build)**.
219 **TIP:** To override Kodi's install location, use `DESTDIR=<path>`. For example:
221 sudo make install DESTDIR=$HOME/kodi
224 **[back to top](#table-of-contents)** | **[back to section top](#4-build-kodi)**
226 ## 5. Build binary add-ons
227 You can find a complete list of available binary add-ons **[here](https://github.com/xbmc/repo-binary-addons)**.
229 In the following, two approaches to building binary add-ons are described.
230 While the workflow of in-tree building is more automated,
231 it is only supported as long as `-DCMAKE_INSTALL_PREFIX=/usr/local` is not changed from it's default of `/usr/local`.
232 Thus when changing `DCMAKE_INSTALL_PREFIX`, you must follow the out-of-tree building instructions.
234 ### 5.1. In-tree building of binary add-ons
236 Change to Kodi's source code directory:
238 cd $HOME/kodi
241 Build all add-ons:
243 sudo make -j$(getconf _NPROCESSORS_ONLN) -C tools/depends/target/binary-addons PREFIX=/usr/local
246 Build specific add-ons:
248 sudo make -j$(getconf _NPROCESSORS_ONLN) -C tools/depends/target/binary-addons PREFIX=/usr/local ADDONS="audioencoder.flac pvr.vdr.vnsi audiodecoder.snesapu"
251 Build a specific group of add-ons:
253 sudo make -j$(getconf _NPROCESSORS_ONLN) -C tools/depends/target/binary-addons PREFIX=/usr/local ADDONS="pvr.*"
256 Clean-up binary add-ons:
258 sudo make -C tools/depends/target/binary-addons clean
261 For additional information on regular expression usage for ADDONS_TO_BUILD, view ADDONS_TO_BUILD section located here [Kodi add-ons CMake based buildsystem](../cmake/addons/README.md)
263 **NOTE:** `PREFIX=/usr/local` should match Kodi's `-DCMAKE_INSTALL_PREFIX=` prefix used in **[section 4.1](#41-configure-build)**.
265 **[back to top](#table-of-contents)**
268 ### 5.2. Out-of-tree building of binary add-ons
270 You can find a complete list of available binary add-ons **[here](https://github.com/xbmc/repo-binary-addons)**.
271 Exemplary, to install `pvr.demo`, follow below steps.
272 For other addons, simply adapt the repository based on the information found in the `.txt` associated with the respective addon **[here](https://github.com/xbmc/repo-binary-addons)**
274 Some addons have dependencies.
275 You must install all required dependencies of an addon before installing the addon.
276 Required dependencies can be found by checking the `depends` folder and
277 it's subdirectories in the repository of the respective addons.
279 A number of addons require the the `p8-platform` and `kodi-platform` add-ons.
280 Note that dependencies on `p8-platform` and `kodi-platform` are typically not declared in the `depends` folder.
281 They are only declared in the `CMakeLists.txt` file of the respective addon (e.g. via `find_package(p8-platform REQUIRED)`).
282 Below we demonstrate how to build these two.
283 First, the platform addon:
286 cd ~/src/
287 git clone https://github.com/xbmc/platform.git
288 cd ~/src/platform/
289 cmake -DCMAKE_INSTALL_PREFIX=/usr/local
290 make && make install
293 Then the kodi-platform add-on:
296 cd ~/src/
297 git clone https://github.com/xbmc/kodi-platform.git
298 cd ~/src/kodi-platform/
299 cmake -DCMAKE_INSTALL_PREFIX=/usr/local
300 make && make install
303 Finally, to install pvr.demo
306 cd ~/src
307 git clone https://github.com/kodi-pvr/pvr.demo.git
308 cd ~/src/pvr.demo/
309 cmake -DCMAKE_INSTALL_PREFIX=/usr/local
310 make && make install
313 **NOTE:** `-DCMAKE_INSTALL_PREFIX=` should match Kodi's `-DCMAKE_INSTALL_PREFIX=` prefix used in **[section 4.1](#41-configure-build)**.
315 ## 6. Run Kodi
316 If you chose to install Kodi using `/usr` or `/usr/local` as the `-DCMAKE_INSTALL_PREFIX=`, you can just issue *kodi* in a terminal session.
318 If you changed `-DCMAKE_INSTALL_PREFIX=` to install Kodi into some non-standard location, you will have to run Kodi directly:
320 <CMAKE_INSTALL_PREFIX>/bin/kodi
323 To run Kodi in *portable* mode (useful for testing):
325 <CMAKE_INSTALL_PREFIX>/bin/kodi -p
328 **[back to top](#table-of-contents)**
330 ## 7. Uninstall Kodi
332 sudo make uninstall
334 **WARNING:**: If you reran CMakes' configure step with a different `-DCMAKE_INSTALL_PREFIX=`, you will need to rerun configure with the correct path for this step to work correctly.
336 If you would like to also remove any settings and third-party addons (skins, scripts, etc.) and Kodi configuration files, you should also run:
338 rm -rf ~/.kodi
341 **[back to top](#table-of-contents)**
343 ## 8. Test suite
344 Kodi has a test suite which uses the Google C++ Testing Framework. This framework is provided directly in Kodi's source tree.
346 Build and run Kodi's test suite:
348 make check
351 Build Kodi's test suite without running it:
353 make kodi-test
356 Run Kodi's test suite manually:
358 ./kodi-test
361 Show Kodi's test suite *help* notes:
363 ./kodi-test --gtest_help
366 Useful options:
368 --gtest_list_tests
369   List the names of all tests instead of running them.
370   The name of TEST(Foo, Bar) is "Foo.Bar".
372 --gtest_filter=POSITIVE_PATTERNS[-NEGATIVE_PATTERNS]
373   Run only the tests whose name matches one of the positive patterns but
374   none of the negative patterns. '?' matches any single character; '*'
375   matches any substring; ':' separates two patterns.
378 **[back to top](#table-of-contents)**