From patchwork Mon Jan 18 09:46:33 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Michael Nosthoff X-Patchwork-Id: 1428055 Return-Path: X-Original-To: incoming-buildroot@patchwork.ozlabs.org Delivered-To: patchwork-incoming-buildroot@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=busybox.net (client-ip=140.211.166.138; helo=whitealder.osuosl.org; envelope-from=buildroot-bounces@busybox.net; receiver=) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=heine.tech header.i=@heine.tech header.a=rsa-sha256 header.s=dkim header.b=hWDCeBJZ; dkim-atps=neutral Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 4DK6QM0mVgz9s1l for ; Mon, 18 Jan 2021 20:47:20 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 8139B86519; Mon, 18 Jan 2021 09:47:17 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 5zMdRg0Tzxjq; Mon, 18 Jan 2021 09:47:16 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id CE41686688; Mon, 18 Jan 2021 09:47:16 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 561FE1BF40E for ; Mon, 18 Jan 2021 09:47:15 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 50DD986688 for ; Mon, 18 Jan 2021 09:47:15 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id i2jB92yZUrrC for ; Mon, 18 Jan 2021 09:47:14 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from mail.heine.tech (mail.heine.tech [195.201.24.99]) by whitealder.osuosl.org (Postfix) with ESMTPS id DBB0986519 for ; Mon, 18 Jan 2021 09:47:13 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) by localhost (Mailerdaemon) with ESMTPSA id 15E9E1814B9; Mon, 18 Jan 2021 10:47:10 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=heine.tech; s=dkim; t=1610963230; h=from:subject:date:message-id:to:cc:mime-version: content-transfer-encoding; bh=T43OH4NuF2l4yXeUq2NV98jIo3F9GnVyat3mIz00nRg=; b=hWDCeBJZ7VfKlaFC4EvdVCUnRbqzXZQu2EUuqy3PRlci1hxWjjE7tUNtui/3hmMm673FnS zOIt8r+BEnYwLx3hFkBIcXX6IAdCWLvp0BrAs0eWRMDycTMpPdTYXDTXtgoVyVxrKTy3SU zciSF1dLyRpqMEA/a+xYUrdjo/y3NTg= To: buildroot@buildroot.org Date: Mon, 18 Jan 2021 10:46:33 +0100 Message-Id: <20210118094635.750975-1-buildroot@heine.tech> MIME-Version: 1.0 X-Last-TLS-Session-Version: TLSv1.3 Subject: [Buildroot] [PATCH] package/grpc: drop host gcc 4.8 workaround X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.29 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , From: Michael Nosthoff via buildroot Reply-To: Michael Nosthoff Cc: Michael Nosthoff , Samuel Martin , "Yann E . MORIN" , Robert Rose Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" Due to libabseil dependencies the host gcc is at least 4.9. So the fix for host gcc 4.8 is no longer needed. Signed-off-by: Michael Nosthoff --- package/grpc/grpc.mk | 8 -------- 1 file changed, 8 deletions(-) diff --git a/package/grpc/grpc.mk b/package/grpc/grpc.mk index 8585b6bdc3..f7ddffd386 100644 --- a/package/grpc/grpc.mk +++ b/package/grpc/grpc.mk @@ -72,13 +72,5 @@ HOST_GRPC_CONF_OPTS = \ -DgRPC_SSL_PROVIDER=package \ -DgRPC_ZLIB_PROVIDER=package -# With gcc 4.8 (at least on ubuntu) there is a bug in LTO which breaks -# the linkage of the grpc_cpp_plugin with libprotobuf and pthread. This -# additional flag fixes this. -ifeq ($(BR2_HOST_GCC_AT_LEAST_4_9),) -HOST_GRPC_CONF_OPTS += \ - -DCMAKE_EXE_LINKER_FLAGS="$(HOST_LDFLAGS) -Wl,--no-as-needed" -endif - $(eval $(cmake-package)) $(eval $(host-cmake-package))