Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH] package/sysdig: bump to version 0.22.1
Date: Thu, 9 Aug 2018 21:59:52 +0200	[thread overview]
Message-ID: <20180809215952.60f89a78@windsurf> (raw)
In-Reply-To: <1533825067-28079-1-git-send-email-angelo@amarulasolutions.com>

Hello,

On Thu,  9 Aug 2018 16:31:07 +0200, Angelo Compagnucci wrote:

> +	select BR2_PACKAGE_ELFUTILS

When you select an option, you need to replicate its dependencies:

config BR2_PACKAGE_ELFUTILS
        bool "elfutils"
        depends on BR2_USE_WCHAR
        depends on !BR2_STATIC_LIBS
        # Only glibc and uClibc implement the myriad of required GNUisms
        depends on BR2_TOOLCHAIN_USES_UCLIBC || BR2_TOOLCHAIN_USES_GLIBC

Currently, BR2_PACKAGE_SYSDIG only has:

config BR2_PACKAGE_SYSDIG
        bool "sysdig"
        depends on BR2_LINUX_KERNEL
        depends on BR2_INSTALL_LIBSTDCPP # libjson
        depends on BR2_PACKAGE_LUAJIT_ARCH_SUPPORTS
        depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8
        depends on !BR2_STATIC_LIBS # luajit

Therefore, it should be changed to:

config BR2_PACKAGE_SYSDIG
        bool "sysdig"
        depends on BR2_LINUX_KERNEL
        depends on BR2_INSTALL_LIBSTDCPP # libjson
        depends on BR2_PACKAGE_LUAJIT_ARCH_SUPPORTS
        depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8
	depends on BR2_USE_WCHAR # elfutils
        depends on !BR2_STATIC_LIBS # luajit, elfutils
	depends on BR2_TOOLCHAIN_USES_UCLIBC || BR2_TOOLCHAIN_USES_GLIBC # elfutils

Is elfutils really a mandatory dependency of this new version of sysdig ?

Thanks!

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin (formerly Free Electrons)
Embedded Linux and Kernel engineering
https://bootlin.com

  parent reply	other threads:[~2018-08-09 19:59 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-08-09 14:31 [Buildroot] [PATCH] package/sysdig: bump to version 0.22.1 Angelo Compagnucci
2018-08-09 14:34 ` Baruch Siach
2018-08-09 19:59 ` Thomas Petazzoni [this message]
2018-08-10  7:51   ` Angelo Compagnucci

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20180809215952.60f89a78@windsurf \
    --to=thomas.petazzoni@bootlin.com \
    --cc=buildroot@busybox.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox