]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
Documentation/kbuild: Document gendwarfksyms build dependencies
authorJihan LIN <linjh22s@gmail.com>
Wed, 14 Jan 2026 11:47:44 +0000 (19:47 +0800)
committerNathan Chancellor <nathan@kernel.org>
Wed, 21 Jan 2026 23:58:42 +0000 (16:58 -0700)
Although dependencies for gendwarfksyms were recently added to the
packaging rules [1-2], the corresponding documentation was missing.

Document the required build dependencies for gendwarfksyms, and
include a few examples for installing these dependencies on some
distributions.

[1] commit 657f96cb7c06 ("kbuild: deb-pkg: Add libdw-dev:native to Build-Depends-Arch")
[2] commit 5bd6bdd0f76e ("kbuild: rpm-pkg: Add (elfutils-devel or libdw-devel) to BuildRequires")

Signed-off-by: Jihan LIN <linjh22s@gmail.com>
Reviewed-by: Petr Pavlu <petr.pavlu@suse.com>
Link: https://patch.msgid.link/20260114-documents_gendwarfksyms-v2-1-297c98bd62c6@gmail.com
[nathan: Applied Petr's suggested changes from review and minor commit
         message formatting adjustments]
Signed-off-by: Nathan Chancellor <nathan@kernel.org>
Documentation/kbuild/gendwarfksyms.rst

index ed366250a54eac3a72c2f529da94a9e803704ae4..c5e4617b4b41f510216dbc9dc3e8ce0213bd3e99 100644 (file)
@@ -14,6 +14,29 @@ selected, **gendwarfksyms** is used instead to calculate symbol versions
 from the DWARF debugging information, which contains the necessary
 details about the final module ABI.
 
+Dependencies
+------------
+
+gendwarfksyms depends on the libelf, libdw, and zlib libraries.
+
+Here are a few examples of how to install these dependencies:
+
+* Arch Linux and derivatives::
+
+       sudo pacman --needed -S libelf zlib
+
+* Debian, Ubuntu, and derivatives::
+
+       sudo apt install libelf-dev libdw-dev zlib1g-dev
+
+* Fedora and derivatives::
+
+       sudo dnf install elfutils-libelf-devel elfutils-devel zlib-devel
+
+* openSUSE and derivatives::
+
+       sudo zypper install libelf-devel libdw-devel zlib-devel
+
 Usage
 -----