diff options
author | Julien CORJON <corjon.j@ecagroup.com> | 2015-07-21 13:30:14 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-07-21 23:20:47 +0200 |
commit | 105c23cedb54f34e80a303c6af02c4398f72f029 (patch) | |
tree | 29614ec29b44864cda38f5e4f75ab2d6cd8cbdbd /package/qt5/qt5base/0006-configure-fix-gold-linker-support-detection.patch | |
parent | aa24cb8b4fac7b2a6aae38ee0d1d798fdbf54f23 (diff) | |
download | buildroot-105c23cedb54f34e80a303c6af02c4398f72f029.tar.gz buildroot-105c23cedb54f34e80a303c6af02c4398f72f029.zip |
qt5: bump version to 5.5.0
QT5BASE_EGLFS_PLATFORM_HOOKS_SOURCES is no longer useful since eglfs does not
depend on the device makespecs anymore. Instead, backends are autodetected by
configure [1]. We still need specifics include path for rpi eglfs support.
0008-forkd-disable-eventfd-for-uclibc.patch disable missing eventfd in new Qt
3rd party forkd for uClibc toolchains.
Remove patches commited in Qt mainline and update pending one
[1] https://codereview.qt-project.org/#/c/107548/
Passed test :
- Full compilation on ARM/uClibc
- Partialy compiled and tested on i.MX6/linaro with OpenGL backend
- Partialy compiled but not executed for Raspberry Pi (rpi-userland)
Signed-off-by: Julien Corjon <corjon.j@ecagroup.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/qt5/qt5base/0006-configure-fix-gold-linker-support-detection.patch')
-rw-r--r-- | package/qt5/qt5base/0006-configure-fix-gold-linker-support-detection.patch | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/package/qt5/qt5base/0006-configure-fix-gold-linker-support-detection.patch b/package/qt5/qt5base/0006-configure-fix-gold-linker-support-detection.patch deleted file mode 100644 index 053d4296e7..0000000000 --- a/package/qt5/qt5base/0006-configure-fix-gold-linker-support-detection.patch +++ /dev/null @@ -1,36 +0,0 @@ -From 6e750053cd6d183173a4c39f2b1080b3c9814d76 Mon Sep 17 00:00:00 2001 -From: Peter Korsgaard <peter@korsgaard.com> -Date: Sun, 15 Feb 2015 22:58:07 +0100 -Subject: [PATCH] configure: fix gold linker support detection - -Submitted upstream: https://bugreports.qt.io/browse/QTBUG-44487 - -While the -fuse-ld=gold flag is related to linking, it is an argument to the -compiler driver to tell it what linker to execute, NOT an option to tell the -linker to behave differently. - -So it shouldn't get prefixed with -Wl when passed though the compiler driver. - -Fixes http://autobuild.buildroot.net/results/92c/92c3fb4ddb934115b228652bb8c972bb7459bb40/ - -Signed-off-by: Peter Korsgaard <peter@korsgaard.com> ---- - configure | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/configure b/configure -index 043d9fc..987d7f0 100755 ---- a/configure -+++ b/configure -@@ -3263,7 +3263,7 @@ fi - - # auto-detect -fuse-ld=gold support - if [ "$CFG_USE_GOLD_LINKER" != "no" ]; then -- if linkerSupportsFlag $TEST_COMPILER -fuse-ld=gold; then -+ if compilerSupportsFlag $TEST_COMPILER -fuse-ld=gold; then - CFG_USE_GOLD_LINKER=yes - else - if [ "$CFG_USE_GOLD_LINKER" = "yes" ]; then --- -2.1.3 - |