[Buildroot] [PATCH 1/1] package/libnfc: pn53x_usb driver needs gcc >= 4.9

Fabrice Fontaine fontaine.fabrice at gmail.com
Sun Dec 13 21:56:09 UTC 2020


Commit 8a26801c9fad1c7749200e22e9dfdeaeeb65f76e forgot to propagate
gcc >= 4.9 dependency

Signed-off-by: Fabrice Fontaine <fontaine.fabrice at gmail.com>
---
 package/libnfc/Config.in | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/package/libnfc/Config.in b/package/libnfc/Config.in
index 073b8f37f5..ead61e4529 100644
--- a/package/libnfc/Config.in
+++ b/package/libnfc/Config.in
@@ -64,13 +64,15 @@ config BR2_PACKAGE_LIBNFC_PN53X_USB
 	bool "pn53x_usb driver"
 	default y
 	depends on BR2_TOOLCHAIN_HAS_THREADS
+	depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # libusb
 	select BR2_PACKAGE_LIBUSB
 	select BR2_PACKAGE_LIBUSB_COMPAT
 	help
 	  support for pn53x_usb driver
 
-comment "pn53x_usb driver needs a toolchain w/ threads"
-	depends on !BR2_TOOLCHAIN_HAS_THREADS
+comment "pn53x_usb driver needs a toolchain w/ threads, gcc >= 4.9"
+	depends on !BR2_TOOLCHAIN_HAS_THREADS || \
+		!BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
 
 config BR2_PACKAGE_LIBNFC_EXAMPLES
 	bool "build libnfc examples"
-- 
2.29.2



More information about the buildroot mailing list