1config BR2_PACKAGE_LIBIQRF 2 bool "libiqrf" 3 depends on BR2_TOOLCHAIN_HAS_THREADS # libusb 4 depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # libusb 5 select BR2_PACKAGE_LIBUSB 6 help 7 This library implement specific protocol 8 which is used for communicating with iqrf devices 9 (http://iqrf.org) over usb. For usb access is used 10 libusb library. 11 12 https://github.com/nandra/libiqrf 13 14comment "libiqrf needs a toolchain w/ threads, gcc >= 4.9" 15 depends on !BR2_TOOLCHAIN_HAS_THREADS || \ 16 !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 17