xref: /OK3568_Linux_fs/buildroot/package/cc-tool/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1config 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
19	  https://github.com/dashesy/cc-tool/
20
21comment "cc-tool needs a toolchain w/ C++, threads, wchar, gcc >= 4.9 "
22	depends on BR2_TOOLCHAIN_SUPPORTS_ALWAYS_LOCKFREE_ATOMIC_INTS
23	depends on !BR2_INSTALL_LIBSTDCPP || \
24		!BR2_TOOLCHAIN_HAS_THREADS || !BR2_USE_WCHAR || \
25		!BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
26