aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorwsnipex <wsnipex@a1.net>2021-12-15 10:08:07 +0100
committerwsnipex <wsnipex@a1.net>2021-12-15 10:16:33 +0100
commit00beb6b1b54a63598e0638e7652b5f9748554a43 (patch)
treed27af507b35e846f797fbf8376e9e296954ef674 /docs
parent5dad2af01008c1ea9c7e601b869fe977bd538247 (diff)
[cmake] fix building internal fstrcmp
Diffstat (limited to 'docs')
-rw-r--r--docs/README.Linux.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/README.Linux.md b/docs/README.Linux.md
index 2f83d75353..a0016cfbfb 100644
--- a/docs/README.Linux.md
+++ b/docs/README.Linux.md
@@ -119,7 +119,9 @@ sudo make -C tools/depends/target/waylandpp PREFIX=/usr/local
**TIP:** Complete list of dependencies is available **[here](https://github.com/xbmc/xbmc/tree/master/tools/depends/target)**.
### 3.2. Enable internal dependencies
-Some dependencies can be configured to build before Kodi. That's the case with `flatbuffers`, `crossguid`, `libfmt`, `libspdlog`, `rapidjson` 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`.
+Some dependencies can be configured to build before Kodi. That's the case with `flatbuffers`, `crossguid`, `libfmt`, `libspdlog`, `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`.
+
+**Note:** fstrcmp requires libtool
**[back to top](#table-of-contents)** | **[back to section top](#3-installing-the-required-packages)**