|
@@ -4,6 +4,7 @@ config BR2_PACKAGE_TRACE_CMD
|
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL
|
|
|
depends on BR2_USE_MMU # fork()
|
|
|
depends on !BR2_STATIC_LIBS # dlopen()
|
|
|
+ depends on BR2_TOOLCHAIN_HAS_THREADS # libtracefs
|
|
|
select BR2_PACKAGE_LIBTRACEEVENT
|
|
|
select BR2_PACKAGE_LIBTRACEFS
|
|
|
help
|
|
@@ -16,6 +17,7 @@ config BR2_PACKAGE_TRACE_CMD
|
|
|
|
|
|
http://git.kernel.org/cgit/linux/kernel/git/rostedt/trace-cmd.git
|
|
|
|
|
|
-comment "trace-cmd needs a toolchain w/ NPTL, dynamic library"
|
|
|
+comment "trace-cmd needs a toolchain w/ threads, NPTL, dynamic library"
|
|
|
depends on BR2_USE_MMU
|
|
|
- depends on !BR2_TOOLCHAIN_HAS_THREADS_NPTL || BR2_STATIC_LIBS
|
|
|
+ depends on !BR2_TOOLCHAIN_HAS_THREADS || \
|
|
|
+ !BR2_TOOLCHAIN_HAS_THREADS_NPTL || BR2_STATIC_LIBS
|