Config.in 791 B

12345678910111213141516171819202122
  1. comment "apitrace needs a toolchain w/ C++, wchar, dynamic library, threads, gcc >= 7"
  2. depends on BR2_USE_MMU
  3. depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || \
  4. BR2_STATIC_LIBS || !BR2_TOOLCHAIN_HAS_THREADS || \
  5. !BR2_TOOLCHAIN_GCC_AT_LEAST_7
  6. config BR2_PACKAGE_APITRACE
  7. bool "apitrace"
  8. depends on BR2_USE_MMU # fork()
  9. depends on BR2_USE_WCHAR
  10. depends on BR2_INSTALL_LIBSTDCPP
  11. depends on !BR2_STATIC_LIBS # dlfcn.h
  12. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_7 # C++17
  13. depends on BR2_TOOLCHAIN_HAS_THREADS
  14. select BR2_PACKAGE_XLIB_LIBX11 if BR2_PACKAGE_XORG7
  15. select BR2_PACKAGE_LIBPNG
  16. help
  17. Trace and replay OpenGL and OpenGL ES APIs calls to/from a
  18. file. You may install apitrace GUI from your distribution to
  19. inspect generated traces.
  20. http://apitrace.github.io/