From 90174b9167016ecf3be653f132ca836bfb349e39 Mon Sep 17 00:00:00 2001 From: Samuli Piippo Date: Wed, 7 Jun 2017 16:18:05 +0300 Subject: 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 --- .../qt5/qtwebengine/0001-Force-host-toolchain-configuration.patch | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'recipes-qt/qt5/qtwebengine/0001-Force-host-toolchain-configuration.patch') 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 else: - cc = os.environ.get('CC', 'cc') - cxx = os.environ.get('CXX', 'c++') -+ cc = os.environ.get('CC_host', 'cc') -+ cxx = os.environ.get('CXX_host', 'c++') ++ cc = os.environ.get('CC_host', 'gcc') ++ cxx = os.environ.get('CXX_host', 'g++') ld = cxx - ar = os.environ.get('AR', 'ar') + ar = os.environ.get('AR_host', 'ar') -- cgit v1.2.3-54-g00ecf