diff options
author | Wolfgang Haupt <haupt.wolfgang@gmail.com> | 2018-07-30 21:43:22 +0200 |
---|---|---|
committer | Wolfgang Haupt <haupt.wolfgang@gmail.com> | 2018-08-02 18:48:38 +0200 |
commit | 5b688d3678b4ee63aad96d7345959bb89504c658 (patch) | |
tree | 115d06e611e0bc2ee6baa8ca97ccc7932706ffe2 /docs | |
parent | 4b0ffe41c7ff8a8416b9908936effc2cec62ecc3 (diff) |
Documentation: adapt gbm build instructions
Diffstat (limited to 'docs')
-rw-r--r-- | docs/README.Linux.md | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/README.Linux.md b/docs/README.Linux.md index 0e5ab42e6a..5aaa48bc2a 100644 --- a/docs/README.Linux.md +++ b/docs/README.Linux.md @@ -139,9 +139,11 @@ cmake ../kodi -DCMAKE_INSTALL_PREFIX=/usr/local -DCORE_PLATFORM_NAME=wayland -DW Or configure build for GBM: ``` -cmake ../kodi -DCMAKE_INSTALL_PREFIX=/usr/local -DCORE_PLATFORM_NAME=gbm +cmake ../kodi -DCMAKE_INSTALL_PREFIX=/usr/local -DCORE_PLATFORM_NAME=gbm -DGBM_RENDER_SYSTEM=gles ``` +**NOTE:** You can use `gl` instead of `gles` if you want to build with `GL`. + ### 4.2. Build ``` cmake --build . -- VERBOSE=1 -j$(getconf _NPROCESSORS_ONLN) |