1config BR2_PACKAGE_SIGROK_CLI 2 bool "sigrok-cli" 3 # libsigrok->libglib2: 4 depends on BR2_USE_WCHAR 5 depends on BR2_TOOLCHAIN_HAS_THREADS 6 depends on BR2_USE_MMU 7 # libsigrok->libzip 8 depends on !BR2_STATIC_LIBS 9 # libsigrok 10 depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_7 11 depends on BR2_ENABLE_LOCALE 12 select BR2_PACKAGE_LIBSIGROK 13 help 14 Sigrok-cli is a command-line frontend for the sigrok 15 software suite. 16 17 http://sigrok.org/wiki/Sigrok-cli 18 19comment "sigrok-cli needs a toolchain w/ locale, wchar, threads, dynamic library, gcc >= 4.7" 20 depends on BR2_USE_MMU 21 depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS \ 22 || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_7 || BR2_STATIC_LIBS \ 23 || !BR2_ENABLE_LOCALE 24