1config BR2_PACKAGE_HACKRF 2 bool "hackrf" 3 depends on !BR2_STATIC_LIBS 4 depends on BR2_TOOLCHAIN_HAS_THREADS 5 depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # libusb 6 select BR2_PACKAGE_FFTW 7 select BR2_PACKAGE_FFTW_SINGLE 8 select BR2_PACKAGE_LIBUSB 9 help 10 Library and tools for accessing HackRF SDR boards. 11 12 https://github.com/mossmann/hackrf/tree/master/host 13 14comment "hackrf needs a toolchain w/ threads, dynamic library, gcc >= 4.9" 15 depends on BR2_STATIC_LIBS || !BR2_TOOLCHAIN_HAS_THREADS || \ 16 !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 17