diff options
author | Samuli Piippo <samuli.piippo@qt.io> | 2017-06-07 16:18:05 +0300 |
---|---|---|
committer | Samuli Piippo <samuli.piippo@qt.io> | 2017-06-08 10:34:06 +0000 |
commit | 90174b9167016ecf3be653f132ca836bfb349e39 (patch) | |
tree | c20227eef82c08c823b0aa95553beb3d884370ab | |
parent | 8116cc0e8acf90f8651fcb39eafcf006419e6e06 (diff) | |
download | meta-qt5-90174b9167016ecf3be653f132ca836bfb349e39.tar.gz |
qtwebengine: fix build with latest oe-core
oe-core has now a whitelist for all the allowed host tools (HOSTTOOL).
Change the used host compiler to gcc/g++ which are already whitelisted.
Change-Id: I5513ef5755e4e827e9f73abbca4738d77f5b26ba
Reviewed-by: Teemu Holappa <teemu.holappa@qt.io>
-rw-r--r-- | recipes-qt/qt5/qtwebengine/0001-Force-host-toolchain-configuration.patch | 4 |
1 files changed, 2 insertions, 2 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 130f3a38..e10d3b82 100644 --- a/recipes-qt/qt5/qtwebengine/0001-Force-host-toolchain-configuration.patch +++ b/recipes-qt/qt5/qtwebengine/0001-Force-host-toolchain-configuration.patch | |||
@@ -52,8 +52,8 @@ index 75b9690..601f688 100755 | |||
52 | else: | 52 | else: |
53 | - cc = os.environ.get('CC', 'cc') | 53 | - cc = os.environ.get('CC', 'cc') |
54 | - cxx = os.environ.get('CXX', 'c++') | 54 | - cxx = os.environ.get('CXX', 'c++') |
55 | + cc = os.environ.get('CC_host', 'cc') | 55 | + cc = os.environ.get('CC_host', 'gcc') |
56 | + cxx = os.environ.get('CXX_host', 'c++') | 56 | + cxx = os.environ.get('CXX_host', 'g++') |
57 | ld = cxx | 57 | ld = cxx |
58 | - ar = os.environ.get('AR', 'ar') | 58 | - ar = os.environ.get('AR', 'ar') |
59 | + ar = os.environ.get('AR_host', 'ar') | 59 | + ar = os.environ.get('AR_host', 'ar') |