summaryrefslogtreecommitdiffstats
path: root/recipes-qt/qt5/qtwebengine/0001-Force-host-toolchain-configuration.patch
diff options
context:
space:
mode:
authorMikko Gronoff <mikko.gronoff@qt.io>2019-02-22 13:36:16 +0200
committerMikko Gronoff <mikko.gronoff@qt.io>2019-02-22 13:36:16 +0200
commitc8c8613d679241b2ceac39e248a3062cc2e56ccd (patch)
treec1a47ac8b8a04a80ac98b38015f58254980fffb9 /recipes-qt/qt5/qtwebengine/0001-Force-host-toolchain-configuration.patch
parent62312010bba98e2b93f24b8b9e06736f9199df9e (diff)
parentfb71293f257c6fd02ccc06765a96dbf11d4569a0 (diff)
downloadmeta-qt5-c8c8613d679241b2ceac39e248a3062cc2e56ccd.tar.gz
Merge remote-tracking branch 'qtyocto/upstream/master' into 5.12
* qtyocto/upstream/master: fb71293 qtwebengine: drop 0002-chromium_overrides.cpp-Fix-build-with-plugins-and-oz.patch 38ec325 qwt-qt5: upgrade 6.1.3 -> 6.1.4 e2d9845 qwt-qt5: Fix multilib install 5be2654 qtwebengine: Fix build with clang/libc++ on aarch64/arm cb1b472 qtbase: Export host compiler and linker 6d919b0 qt5-plugin-generic-vboxtouch: Fix build with clang/libc++ 6713882 maliit-framework,maliit-plugins: Fix build with libc++ 9a83f2d qtconnectivity: Fix build with clang/libc++ 080cc29 qtwayland: workaround upstream bug: install missing headers manually f6f61b0 gstreamer1.0-plugins-good: fix qt5 dependency d055d6a qtbase: Update the PACKAGECONFIG_KDE to enable more 82abc2b qtbase: fix incomplete recipe changes from previous commit f4c8cef qtbase: Fix qtopcua issue on bigendian systems be8bc9f qtwebkit: Disable JIT for mips64 Conflicts: recipes-qt/qt5/nativesdk-qtbase_git.bb recipes-qt/qt5/qtbase-native_git.bb recipes-qt/qt5/qtbase_git.bb recipes-qt/qt5/qtwayland_git.bb Change-Id: I4ec16ed288fda7270c59abe70d337e7016f547c7
Diffstat (limited to 'recipes-qt/qt5/qtwebengine/0001-Force-host-toolchain-configuration.patch')
-rw-r--r--recipes-qt/qt5/qtwebengine/0001-Force-host-toolchain-configuration.patch16
1 files changed, 6 insertions, 10 deletions
diff --git a/recipes-qt/qt5/qtwebengine/0001-Force-host-toolchain-configuration.patch b/recipes-qt/qt5/qtwebengine/0001-Force-host-toolchain-configuration.patch
index b51c4c72..c9266582 100644
--- a/recipes-qt/qt5/qtwebengine/0001-Force-host-toolchain-configuration.patch
+++ b/recipes-qt/qt5/qtwebengine/0001-Force-host-toolchain-configuration.patch
@@ -17,8 +17,6 @@ Signed-off-by: Samuli Piippo <samuli.piippo@qt.io>
17 src/core/config/linux.pri | 2 +- 17 src/core/config/linux.pri | 2 +-
18 2 files changed, 8 insertions(+), 8 deletions(-) 18 2 files changed, 8 insertions(+), 8 deletions(-)
19 19
20diff --git a/src/buildtools/configure_host.pro b/src/buildtools/configure_host.pro
21index dd0d3e32..70161c82 100644
22--- a/src/buildtools/configure_host.pro 20--- a/src/buildtools/configure_host.pro
23+++ b/src/buildtools/configure_host.pro 21+++ b/src/buildtools/configure_host.pro
24@@ -4,7 +4,7 @@ TEMPLATE = aux 22@@ -4,7 +4,7 @@ TEMPLATE = aux
@@ -37,9 +35,9 @@ index dd0d3e32..70161c82 100644
37-" cc = \"$$which($$QMAKE_CC)\" " \ 35-" cc = \"$$which($$QMAKE_CC)\" " \
38-" cxx = \"$$which($$QMAKE_CXX)\" " \ 36-" cxx = \"$$which($$QMAKE_CXX)\" " \
39-" ld = \"$$which($$QMAKE_LINK)\" " \ 37-" ld = \"$$which($$QMAKE_LINK)\" " \
40+" cc = \"$$which(gcc)\" " \ 38+" cc = \"$$which($$CC_host)\" " \
41+" cxx = \"$$which(g++)\" " \ 39+" cxx = \"$$which($$CXX_host)\" " \
42+" ld = \"$$which(g++)\" " \ 40+" ld = \"$$which($$CXX_host)\" " \
43 " ar = \"$$which(ar)\" " \ 41 " ar = \"$$which(ar)\" " \
44 " nm = \"$$which(nm)\" " \ 42 " nm = \"$$which(nm)\" " \
45 " extra_cppflags = \"$$GN_HOST_EXTRA_CPPFLAGS\" " \ 43 " extra_cppflags = \"$$GN_HOST_EXTRA_CPPFLAGS\" " \
@@ -50,14 +48,12 @@ index dd0d3e32..70161c82 100644
50-" cc = \"$$which($$QMAKE_CC)\" " \ 48-" cc = \"$$which($$QMAKE_CC)\" " \
51-" cxx = \"$$which($$QMAKE_CXX)\" " \ 49-" cxx = \"$$which($$QMAKE_CXX)\" " \
52-" ld = \"$$which($$QMAKE_LINK)\" " \ 50-" ld = \"$$which($$QMAKE_LINK)\" " \
53+" cc = \"$$which(gcc)\" " \ 51+" cc = \"$$which($$CC_host)\" " \
54+" cxx = \"$$which(g++)\" " \ 52+" cxx = \"$$which($$CXX_host)\" " \
55+" ld = \"$$which(g++)\" " \ 53+" ld = \"$$which($$CXX_host)\" " \
56 " ar = \"$$which(ar)\" " \ 54 " ar = \"$$which(ar)\" " \
57 " nm = \"$$which(nm)\" " \ 55 " nm = \"$$which(nm)\" " \
58 " toolchain_args = { " \ 56 " toolchain_args = { " \
59diff --git a/src/core/config/linux.pri b/src/core/config/linux.pri
60index 85b948db..c529c641 100644
61--- a/src/core/config/linux.pri 57--- a/src/core/config/linux.pri
62+++ b/src/core/config/linux.pri 58+++ b/src/core/config/linux.pri
63@@ -112,7 +112,7 @@ contains(QT_ARCH, "mips") { 59@@ -112,7 +112,7 @@ contains(QT_ARCH, "mips") {