Bump Buildroot Version to buildroot 2019_02_6
This commit is contained in:
@@ -13,7 +13,7 @@ QT5_VERSION_MAJOR = 5.6
|
||||
QT5_VERSION = $(QT5_VERSION_MAJOR).3
|
||||
QT5_SOURCE_TARBALL_PREFIX = opensource-src
|
||||
endif
|
||||
QT5_SITE = https://download.qt.io/official_releases/qt/$(QT5_VERSION_MAJOR)/$(QT5_VERSION)/submodules
|
||||
QT5_SITE = https://download.qt.io/archive/qt/$(QT5_VERSION_MAJOR)/$(QT5_VERSION)/submodules
|
||||
|
||||
include $(sort $(wildcard package/qt5/*/*.mk))
|
||||
|
||||
|
||||
@@ -0,0 +1,32 @@
|
||||
From e094806951ff7337b5b0c534db479e3808f153a7 Mon Sep 17 00:00:00 2001
|
||||
From: Allan Sandfeld Jensen <allan.jensen@qt.io>
|
||||
Date: Tue, 13 Nov 2018 16:00:23 +0100
|
||||
Subject: [PATCH] Fix compile issue with gcc 9
|
||||
|
||||
It appears messenne_twisters in the latest libstdc++ has one more
|
||||
requirement before it is willing to construct with our
|
||||
SystemGenerator struct as an sseq provider.
|
||||
|
||||
Change-Id: If38151d1fa6f40a80274acc26d9ed6b4ac6049fe
|
||||
Reviewed-by: Giuseppe D'Angelo <giuseppe.dangelo@kdab.com>
|
||||
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
|
||||
Signed-off-by: Julien Beraud <julien.beraud@orolia.com>
|
||||
---
|
||||
src/corelib/global/qrandom.cpp | 1 +
|
||||
1 file changed, 1 insertion(+)
|
||||
|
||||
diff --git a/src/corelib/global/qrandom.cpp b/src/corelib/global/qrandom.cpp
|
||||
index ebf9864b15..577736a867 100644
|
||||
--- a/src/corelib/global/qrandom.cpp
|
||||
+++ b/src/corelib/global/qrandom.cpp
|
||||
@@ -218,6 +218,7 @@ struct QRandomGenerator::SystemGenerator
|
||||
#endif // Q_OS_WINRT
|
||||
|
||||
static SystemGenerator &self();
|
||||
+ typedef quint32 result_type;
|
||||
void generate(quint32 *begin, quint32 *end) Q_DECL_NOEXCEPT_EXPR(FillBufferNoexcept);
|
||||
|
||||
// For std::mersenne_twister_engine implementations that use something
|
||||
--
|
||||
2.23.0
|
||||
|
||||
@@ -15,7 +15,10 @@ QMAKE_CXX = $${CROSS_COMPILE}g++
|
||||
# modifications to gcc-base.conf
|
||||
QMAKE_CFLAGS += $${BR_COMPILER_CFLAGS}
|
||||
QMAKE_CXXFLAGS += $${BR_COMPILER_CXXFLAGS}
|
||||
QMAKE_CXXFLAGS_RELEASE += -O3
|
||||
QMAKE_CFLAGS_OPTIMIZE =
|
||||
QMAKE_CFLAGS_OPTIMIZE_DEBUG =
|
||||
QMAKE_CFLAGS_OPTIMIZE_FULL =
|
||||
QMAKE_CFLAGS_OPTIMIZE_SIZE =
|
||||
CONFIG += nostrip
|
||||
|
||||
QMAKE_LIBS += -lrt -lpthread -ldl
|
||||
|
||||
@@ -27,6 +27,13 @@ QT5BASE_CONFIGURE_OPTS += \
|
||||
-no-pch \
|
||||
-shared
|
||||
|
||||
# starting from version 5.9.0, -optimize-debug is enabled by default
|
||||
# for debug builds and it overrides -O* with -Og which is not what we
|
||||
# want.
|
||||
ifeq ($(BR2_PACKAGE_QT5_VERSION_LATEST),y)
|
||||
QT5BASE_CONFIGURE_OPTS += -no-optimize-debug
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_QT5_VERSION_5_6),y)
|
||||
QT5BASE_DEPENDENCIES += pcre
|
||||
else
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
config BR2_PACKAGE_QT5ENGINIO
|
||||
bool "qt5enginio"
|
||||
select BR2_PACKAGE_OPENSSL
|
||||
select BR2_PACKAGE_QT5BASE
|
||||
depends on BR2_PACKAGE_QT5BASE_OPENSSL
|
||||
select BR2_PACKAGE_QT5BASE_GUI
|
||||
select BR2_PACKAGE_QT5BASE_NETWORK
|
||||
help
|
||||
@@ -15,3 +14,13 @@ config BR2_PACKAGE_QT5ENGINIO
|
||||
5.6 and not recommended for new design.
|
||||
|
||||
http://doc.qt.io/archives/qt-5.5/enginio-index.html
|
||||
|
||||
# When Qt 5.6 is removed, replace the depends on
|
||||
# BR2_PACKAGE_QT5BASE_OPENSSL above by a select BR2_PACKAGE_OPENSSL.
|
||||
comment "qt5enginio needs libressl"
|
||||
depends on BR2_PACKAGE_QT5_VERSION_5_6
|
||||
depends on !BR2_PACKAGE_QT5BASE_OPENSSL
|
||||
|
||||
comment "qt5enginio needs openssl"
|
||||
depends on BR2_PACKAGE_QT5_VERSION_LATEST
|
||||
depends on !BR2_PACKAGE_QT5BASE_OPENSSL
|
||||
|
||||
Reference in New Issue
Block a user