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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id AA216158091 for ; Tue, 17 May 2022 23:08:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8E4EFE0821; Tue, 17 May 2022 23:08:49 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 43933E0821 for ; Tue, 17 May 2022 23:08:49 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0838B3415E9 for ; Tue, 17 May 2022 23:08:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3AB5B448 for ; Tue, 17 May 2022 23:08:46 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1652828346.7b1f03036c619f10255a08d65828248a2ab0eba1.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/icu/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/icu/icu-71.1.ebuild X-VCS-Directories: dev-libs/icu/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 7b1f03036c619f10255a08d65828248a2ab0eba1 X-VCS-Branch: master Date: Tue, 17 May 2022 23:08:46 +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: 034c8f3d-87bd-4e97-a97c-88f9648069d9 X-Archives-Hash: 9d045f689dcf263482314a5e93ffe1c8 commit: 7b1f03036c619f10255a08d65828248a2ab0eba1 Author: Sam James gentoo org> AuthorDate: Tue May 17 22:57:26 2022 +0000 Commit: Sam James gentoo org> CommitDate: Tue May 17 22:59:06 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b1f0303 dev-libs/icu: explain append-cxxflags for C++14 Without context, it looks stale, but it isn't! ICU appends c++11 to flags otherwise. Signed-off-by: Sam James gentoo.org> dev-libs/icu/icu-71.1.ebuild | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dev-libs/icu/icu-71.1.ebuild b/dev-libs/icu/icu-71.1.ebuild index b12402f07a43..9b9d7ebf841a 100644 --- a/dev-libs/icu/icu-71.1.ebuild +++ b/dev-libs/icu/icu-71.1.ebuild @@ -61,6 +61,9 @@ src_prepare() { } src_configure() { + # ICU tries to append -std=c++11 without this, so as of 71.1, + # despite GCC 9+ using c++14 (or gnu++14) and GCC 11+ using gnu++17, + # we still need this. append-cxxflags -std=c++14 if tc-is-cross-compiler; then