* [Buildroot] [PATCH 1/2] package/lttng-tools: reorder 'select' vs 'depends on'
@ 2016-01-23 10:52 Samuel Martin
2016-01-23 10:52 ` [Buildroot] [PATCH 2/2] package/lttng-tools: needs dynamic library support Samuel Martin
2016-01-23 11:02 ` [Buildroot] [PATCH 1/2] package/lttng-tools: reorder 'select' vs 'depends on' Thomas Petazzoni
0 siblings, 2 replies; 3+ messages in thread
From: Samuel Martin @ 2016-01-23 10:52 UTC (permalink / raw)
To: buildroot
Place 'depends on' statements before 'select' ones.
Signed-off-by: Samuel Martin <s.martin49@gmail.com>
---
package/lttng-tools/Config.in | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/package/lttng-tools/Config.in b/package/lttng-tools/Config.in
index 599095d..7808ba3 100644
--- a/package/lttng-tools/Config.in
+++ b/package/lttng-tools/Config.in
@@ -1,16 +1,16 @@
config BR2_PACKAGE_LTTNG_TOOLS
bool "lttng-tools"
- select BR2_PACKAGE_LIBURCU
- select BR2_PACKAGE_LIBXML2
- select BR2_PACKAGE_POPT
- select BR2_PACKAGE_UTIL_LINUX
- select BR2_PACKAGE_UTIL_LINUX_LIBUUID
# liburcu only works on some architectures and requires thread support
depends on BR2_PACKAGE_LIBURCU_ARCH_SUPPORTS
depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_58595 # lttng-tools/gcc-4.{7,8}.x bug
depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_58854 # liburcu/gcc-4.8.x bug
depends on BR2_USE_WCHAR # util-linux
depends on BR2_TOOLCHAIN_HAS_THREADS
+ select BR2_PACKAGE_LIBURCU
+ select BR2_PACKAGE_LIBXML2
+ select BR2_PACKAGE_POPT
+ select BR2_PACKAGE_UTIL_LINUX
+ select BR2_PACKAGE_UTIL_LINUX_LIBUUID
help
Userspace utilities for the LTTng 2.x tracing
infrastructure.
--
2.7.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [Buildroot] [PATCH 2/2] package/lttng-tools: needs dynamic library support
2016-01-23 10:52 [Buildroot] [PATCH 1/2] package/lttng-tools: reorder 'select' vs 'depends on' Samuel Martin
@ 2016-01-23 10:52 ` Samuel Martin
2016-01-23 11:02 ` [Buildroot] [PATCH 1/2] package/lttng-tools: reorder 'select' vs 'depends on' Thomas Petazzoni
1 sibling, 0 replies; 3+ messages in thread
From: Samuel Martin @ 2016-01-23 10:52 UTC (permalink / raw)
To: buildroot
Fixes:
http://autobuild.buildroot.net/results/b48bc7ad4bede4d16c079da0ae1121e6796a0e8d/
http://autobuild.buildroot.net/results/25dcb19c3dd32e50990f9b45053d71ea18746a80/
http://autobuild.buildroot.net/results/a3f93498811491d37ba13d024e33e68a8bc7ba18/
Signed-off-by: Samuel Martin <s.martin49@gmail.com>
---
package/lttng-tools/Config.in | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/package/lttng-tools/Config.in b/package/lttng-tools/Config.in
index 7808ba3..b758d32 100644
--- a/package/lttng-tools/Config.in
+++ b/package/lttng-tools/Config.in
@@ -6,6 +6,7 @@ config BR2_PACKAGE_LTTNG_TOOLS
depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_58854 # liburcu/gcc-4.8.x bug
depends on BR2_USE_WCHAR # util-linux
depends on BR2_TOOLCHAIN_HAS_THREADS
+ depends on !BR2_STATIC_LIBS # uses dlfcn
select BR2_PACKAGE_LIBURCU
select BR2_PACKAGE_LIBXML2
select BR2_PACKAGE_POPT
@@ -29,9 +30,9 @@ config BR2_PACKAGE_LTTNG_TOOLS
http://lttng.org
-comment "lttng-tools needs a toolchain w/ threads, wchar"
+comment "lttng-tools needs a toolchain w/ threads, wchar, dynamic library"
depends on BR2_PACKAGE_LIBURCU_ARCH_SUPPORTS
- depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_USE_WCHAR
+ depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_USE_WCHAR || BR2_STATIC_LIBS
depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_58595 # lttng-tools/gcc-4.{7,8}.x bug
depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_58854 # liburcu/gcc-4.8.x bug
--
2.7.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [Buildroot] [PATCH 1/2] package/lttng-tools: reorder 'select' vs 'depends on'
2016-01-23 10:52 [Buildroot] [PATCH 1/2] package/lttng-tools: reorder 'select' vs 'depends on' Samuel Martin
2016-01-23 10:52 ` [Buildroot] [PATCH 2/2] package/lttng-tools: needs dynamic library support Samuel Martin
@ 2016-01-23 11:02 ` Thomas Petazzoni
1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni @ 2016-01-23 11:02 UTC (permalink / raw)
To: buildroot
Dear Samuel Martin,
On Sat, 23 Jan 2016 11:52:21 +0100, Samuel Martin wrote:
> Place 'depends on' statements before 'select' ones.
>
> Signed-off-by: Samuel Martin <s.martin49@gmail.com>
> ---
> package/lttng-tools/Config.in | 10 +++++-----
> 1 file changed, 5 insertions(+), 5 deletions(-)
Both applied, thanks.
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2016-01-23 11:02 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-01-23 10:52 [Buildroot] [PATCH 1/2] package/lttng-tools: reorder 'select' vs 'depends on' Samuel Martin
2016-01-23 10:52 ` [Buildroot] [PATCH 2/2] package/lttng-tools: needs dynamic library support Samuel Martin
2016-01-23 11:02 ` [Buildroot] [PATCH 1/2] package/lttng-tools: reorder 'select' vs 'depends on' Thomas Petazzoni
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox