From patchwork Mon Jun 5 17:14:42 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bernd Kuhls X-Patchwork-Id: 771357 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hemlock.osuosl.org (smtp2.osuosl.org [140.211.166.133]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3whLzT1HQsz9s0m for ; Tue, 6 Jun 2017 03:15:01 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 7A92F8641E; Mon, 5 Jun 2017 17:14:59 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id yjrzP4UvTOxu; Mon, 5 Jun 2017 17:14:58 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id D530886412; Mon, 5 Jun 2017 17:14:57 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from silver.osuosl.org (smtp3.osuosl.org [140.211.166.136]) by ash.osuosl.org (Postfix) with ESMTP id D6ED71C0488 for ; Mon, 5 Jun 2017 17:14:55 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id D200A2E49B for ; Mon, 5 Jun 2017 17:14:55 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id M2EZNOgh+U4u for ; Mon, 5 Jun 2017 17:14:52 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mailout05.t-online.de (mailout05.t-online.de [194.25.134.82]) by silver.osuosl.org (Postfix) with ESMTPS id D51922E5FA for ; Mon, 5 Jun 2017 17:14:51 +0000 (UTC) Received: from fwd15.aul.t-online.de (fwd15.aul.t-online.de [172.20.27.63]) by mailout05.t-online.de (Postfix) with SMTP id 5A7A0426DE37 for ; Mon, 5 Jun 2017 19:14:49 +0200 (CEST) Received: from fli4l.lan.fli4l (G-T8cMZ-8hlIN25BQ6vr87MRb6l18IX6BQJuW77TKzA301hjIbbpvRoxj6R+KlDQml@[79.222.103.70]) by fwd15.t-online.de with (TLSv1:ECDHE-RSA-AES256-SHA encrypted) esmtp id 1dHvaV-1SGAJU0; Mon, 5 Jun 2017 19:14:43 +0200 Received: from mahler.lan.fli4l ([192.168.1.1]:44716 helo=kuhls.lan.fli4l) by fli4l.lan.fli4l with esmtp (Exim 4.89) (envelope-from ) id 1dHvaU-00046s-6u for buildroot@buildroot.org; Mon, 05 Jun 2017 19:14:42 +0200 From: Bernd Kuhls To: buildroot@buildroot.org Date: Mon, 5 Jun 2017 19:14:42 +0200 Message-Id: <20170605171442.10108-1-bernd.kuhls@t-online.de> X-Mailer: git-send-email 2.11.0 X-ID: G-T8cMZ-8hlIN25BQ6vr87MRb6l18IX6BQJuW77TKzA301hjIbbpvRoxj6R+KlDQml X-TOI-MSGID: 9d641282-f63c-463e-8287-268e30f556c3 Subject: [Buildroot] [PATCH v2 1/1] package/icu: needs host gcc >= 4.8 X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" Fixes http://autobuild.buildroot.net/results/2b3/2b3a9be1780857db8827ea70df9d8699116a5df7/ Signed-off-by: Bernd Kuhls --- v2: updated Config.in comment (Baruch) package/icu/Config.in | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/package/icu/Config.in b/package/icu/Config.in index 32f35b9d9..fde486b60 100644 --- a/package/icu/Config.in +++ b/package/icu/Config.in @@ -1,5 +1,6 @@ config BR2_PACKAGE_ICU bool "icu" + depends on BR2_HOST_GCC_AT_LEAST_4_8 depends on BR2_INSTALL_LIBSTDCPP depends on BR2_USE_WCHAR depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 @@ -26,8 +27,9 @@ config BR2_PACKAGE_ICU_CUSTOM_DATA_PATH endif -comment "icu needs a toolchain w/ C++, wchar, threads, gcc >= 4.8" +comment "icu needs a toolchain w/ C++, wchar, threads, gcc >= 4.8, host gcc >= 4.8" depends on !BR2_BINFMT_FLAT depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || \ !BR2_TOOLCHAIN_HAS_THREADS || \ - !BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 + !BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 || \ + !BR2_HOST_GCC_AT_LEAST_4_8