Config.in 688 B

1234567891011121314151617181920
  1. config BR2_PACKAGE_LTTNG_LIBUST
  2. bool "lttng-libust"
  3. select BR2_PACKAGE_LIBURCU
  4. select BR2_PACKAGE_UTIL_LINUX
  5. select BR2_PACKAGE_UTIL_LINUX_LIBUUID
  6. # util-linux needs wchar and largefile
  7. depends on BR2_USE_WCHAR
  8. depends on BR2_LARGEFILE
  9. # liburcu only works on some architectures
  10. depends on BR2_arm || BR2_armeb || BR2_i386 || BR2_powerpc || BR2_x86_64
  11. help
  12. Userspace tracing library for the Lttng tracing
  13. infrastructure. It allows userspace programs to create
  14. custom trace events that are integrated with all other
  15. events gathered by LTTng.
  16. http://lttng.org
  17. comment "lttng-libust needs WCHAR and LARGEFILE support"
  18. depends on !(BR2_USE_WCHAR || BR2_LARGEFILE)