Config.in 970 B

12345678910111213141516171819202122232425
  1. config BR2_PACKAGE_CC_TOOL
  2. bool "cc-tool"
  3. depends on BR2_INSTALL_LIBSTDCPP
  4. depends on BR2_TOOLCHAIN_HAS_THREADS
  5. depends on BR2_TOOLCHAIN_SUPPORTS_ALWAYS_LOCKFREE_ATOMIC_INTS # boost-filesystem
  6. depends on BR2_USE_WCHAR # boost-filesystem
  7. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # libusb
  8. select BR2_PACKAGE_LIBUSB
  9. select BR2_PACKAGE_BOOST
  10. select BR2_PACKAGE_BOOST_PROGRAM_OPTIONS
  11. select BR2_PACKAGE_BOOST_SYSTEM
  12. select BR2_PACKAGE_BOOST_REGEX
  13. select BR2_PACKAGE_BOOST_FILESYSTEM
  14. help
  15. cc-tool provides support for Texas Instruments CC Debugger
  16. for Linux OS in order to program 8051-based System-On-Chip
  17. devices: CC254x CC253x CC243x CC251x CC111x
  18. https://github.com/dashesy/cc-tool/
  19. comment "cc-tool needs a toolchain w/ C++, threads, wchar, gcc >= 4.9 "
  20. depends on BR2_TOOLCHAIN_SUPPORTS_ALWAYS_LOCKFREE_ATOMIC_INTS
  21. depends on !BR2_INSTALL_LIBSTDCPP || \
  22. !BR2_TOOLCHAIN_HAS_THREADS || !BR2_USE_WCHAR || \
  23. !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9