Config.in 448 B

12345678910111213141516171819
  1. config BR2_PACKAGE_LIBUSB
  2. bool "libusb"
  3. depends on BR2_TOOLCHAIN_HAS_THREADS
  4. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # _Thread_local
  5. help
  6. Userspace library for accessing USB devices
  7. http://libusb.info/
  8. if BR2_PACKAGE_LIBUSB
  9. config BR2_PACKAGE_LIBUSB_EXAMPLES
  10. bool "build libusb examples"
  11. endif
  12. comment "libusb needs a toolchain w/ threads, gcc >= 4.9"
  13. depends on !BR2_TOOLCHAIN_HAS_THREADS || \
  14. !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9