From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 8697113835A for ; Sun, 21 Jun 2020 07:18:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8FF2AE0918; Sun, 21 Jun 2020 07:18:35 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7724FE0918 for ; Sun, 21 Jun 2020 07:18:35 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6631A34F96D for ; Sun, 21 Jun 2020 07:18:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A12E72AB for ; Sun, 21 Jun 2020 07:18:32 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1592723909.a472ac3e8e8180995d67b099a26a44eb5200b9cb.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-client/chromium/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-client/chromium/chromium-84.0.4147.45-r1.ebuild X-VCS-Directories: www-client/chromium/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: a472ac3e8e8180995d67b099a26a44eb5200b9cb X-VCS-Branch: master Date: Sun, 21 Jun 2020 07:18:32 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 10b3ec62-31cd-4301-bdb6-814ac2ecdb45 X-Archives-Hash: 1e9fd5d2e86f9962f8d278ab96a5dbaa commit: a472ac3e8e8180995d67b099a26a44eb5200b9cb Author: Michał Górny gentoo org> AuthorDate: Sat Jun 20 14:54:26 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Jun 21 07:18:29 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a472ac3e www-client/chromium: Silence some GCC warnings Silence some warnings specific to GCC that keep appearing for a very long time. Since upstream does not care about GCC, they are unlikely to ever disappear. Since they often affect header files, they repeat often and unnecessarily increase build log size. Signed-off-by: Michał Górny gentoo.org> Closes: https://github.com/gentoo/gentoo/pull/16343 Signed-off-by: Michał Górny gentoo.org> www-client/chromium/chromium-84.0.4147.45-r1.ebuild | 3 +++ 1 file changed, 3 insertions(+) diff --git a/www-client/chromium/chromium-84.0.4147.45-r1.ebuild b/www-client/chromium/chromium-84.0.4147.45-r1.ebuild index baebfbedc07..966c8a05a06 100644 --- a/www-client/chromium/chromium-84.0.4147.45-r1.ebuild +++ b/www-client/chromium/chromium-84.0.4147.45-r1.ebuild @@ -658,6 +658,9 @@ src_configure() { # Chromium relies on this, but was disabled in >=clang-10, crbug.com/1042470 append-cxxflags $(test-flags-CXX -flax-vector-conversions=all) + # Silence lots of GCC warnings upstream doesn't seem to care about + append-cxxflags -Wno-invalid-offsetof -Wno-attributes -Wno-pragmas + # Explicitly disable ICU data file support for system-icu builds. if use system-icu; then myconf_gn+=" icu_use_data_file=false"