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