]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph-build.git/commitdiff
kernel: install elfutils-devel or libdw-dev(el) 2376/head
authorIlya Dryomov <idryomov@gmail.com>
Wed, 11 Jun 2025 09:11:34 +0000 (11:11 +0200)
committerIlya Dryomov <idryomov@gmail.com>
Wed, 11 Jun 2025 09:11:34 +0000 (11:11 +0200)
This is a required dependency for CONFIG_GENDWARFKSYMS since 6.15.

Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
kernel/build/setup

index b0f9e7780f90f86533d8966e9e9cc7ea0aaf392f..732c67bcd4375fd369180c9a1fe352aa49c9d0ff 100644 (file)
@@ -33,6 +33,7 @@ if test -f /etc/redhat-release ; then
     $SUDO yum install -y elfutils-libelf-devel  # for ORC unwinder
     $SUDO yum install -y flex bison  # for Kconfig
     $SUDO yum install -y dwarves
+    $SUDO yum install -y elfutils-devel  # for dwarf.h
 
     # Set vars for shaman status updating
     get_rpm_dist
@@ -45,6 +46,7 @@ if which apt-get > /dev/null ; then
     $SUDO apt-get install -y libelf-dev  # for ORC unwinder
     $SUDO apt-get install -y flex bison  # for Kconfig
     $SUDO apt-get install -y dwarves
+    $SUDO apt-get install -y libdw-dev  # for dwarf.h
 
     # Set vars for shaman status updating
     DISTRO=$(lsb_release -si)