1config BR2_PACKAGE_LIBSERIAL 2 bool "libserial" 3 depends on BR2_INSTALL_LIBSTDCPP 4 depends on BR2_TOOLCHAIN_GCC_AT_LEAST_5 # C++14 5 depends on BR2_TOOLCHAIN_HAS_THREADS # boost 6 depends on BR2_USE_WCHAR # boost 7 select BR2_PACKAGE_BOOST 8 help 9 Simplified serial port programming in C++ under POSIX 10 operating systems. 11 12 http://libserial.sourceforge.net/ 13 14comment "libserial needs a toolchain w/ C++, gcc >= 5, threads, wchar" 15 depends on !BR2_INSTALL_LIBSTDCPP || \ 16 !BR2_TOOLCHAIN_GCC_AT_LEAST_5 || \ 17 !BR2_TOOLCHAIN_HAS_THREADS || !BR2_USE_WCHAR 18