[Buildroot] [git commit] qt: broken on avr32

Peter Korsgaard jacmet at sunsite.dk
Thu Jun 27 17:39:45 UTC 2013


commit: http://git.buildroot.net/buildroot/commit/?id=416a405d60bf1278126452ac3d226218cbced9b0
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master

Qt is broken for the avr32 architecture since it lacks TLS support.
Fixes:
http://autobuild.buildroot.net/results/56d/56d1d8f12a847f1ba49547a51d7a3605755a0bb8/

Signed-off-by: Gustavo Zacarias <gustavo at zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet at sunsite.dk>
---
 package/opencv/Config.in |    1 +
 package/qt/Config.in     |    1 +
 2 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/package/opencv/Config.in b/package/opencv/Config.in
index 6a47ac5..26bf5e7 100644
--- a/package/opencv/Config.in
+++ b/package/opencv/Config.in
@@ -167,6 +167,7 @@ config BR2_PACKAGE_OPENCV_WITH_PNG
 config BR2_PACKAGE_OPENCV_WITH_QT
 	bool "qt backend support"
 	depends on BR2_INSTALL_LIBSTDCPP
+	depends on !BR2_avr32 # qt
 	select BR2_PACKAGE_QT
 	select BR2_PACKAGE_QT_STL
 	default y
diff --git a/package/qt/Config.in b/package/qt/Config.in
index fdbb598..9f6e54d 100644
--- a/package/qt/Config.in
+++ b/package/qt/Config.in
@@ -3,6 +3,7 @@ comment "qt requires a toolchain with C++ support enabled"
 
 menuconfig BR2_PACKAGE_QT
 	bool "Qt"
+	depends on !BR2_avr32 # lacks TLS
 	depends on BR2_INSTALL_LIBSTDCPP
 	help
 	  Qt is a cross-platform application and UI framework for


More information about the buildroot mailing list