From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1546828-garchives=archives.gentoo.org@lists.gentoo.org> 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 ECC3D15801B for <garchives@archives.gentoo.org>; Fri, 18 Aug 2023 09:30:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DCB062BC014; Fri, 18 Aug 2023 09:30:02 +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 F33882BC020 for <gentoo-commits@lists.gentoo.org>; Fri, 18 Aug 2023 09:30:01 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2FAB8335C52 for <gentoo-commits@lists.gentoo.org>; Fri, 18 Aug 2023 09:23:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8F66AB8B for <gentoo-commits@lists.gentoo.org>; Fri, 18 Aug 2023 09:22:58 +0000 (UTC) From: "Sam James" <sam@gentoo.org> 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" <sam@gentoo.org> Message-ID: <1692350551.84bffb47c84bc57fbbd409a72e5ae3d1cdb8cf9e.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/clang-common/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-devel/clang-common/clang-common-17.0.0.9999.ebuild sys-devel/clang-common/clang-common-17.0.0_rc2-r1.ebuild sys-devel/clang-common/clang-common-17.0.0_rc2.ebuild sys-devel/clang-common/clang-common-18.0.0.9999.ebuild sys-devel/clang-common/clang-common-18.0.0_pre20230803.ebuild sys-devel/clang-common/clang-common-18.0.0_pre20230810.ebuild X-VCS-Directories: sys-devel/clang-common/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 84bffb47c84bc57fbbd409a72e5ae3d1cdb8cf9e X-VCS-Branch: master Date: Fri, 18 Aug 2023 09:22:58 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: f0113df1-fe3d-4253-b2bc-5292986f5c36 X-Archives-Hash: e677d27a5a8a1bf3471d744b5278ddc4 commit: 84bffb47c84bc57fbbd409a72e5ae3d1cdb8cf9e Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Fri Aug 18 02:02:18 2023 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Fri Aug 18 09:22:31 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84bffb47 sys-devel/clang-common: update for newer libcxx Newer libcxx (>=17) uses _LIBCPP_ENABLE_HARDENED_MODE instead of _LIBCPP_ENABLE_ASSERTIONS which is now deprecated. Closes: https://bugs.gentoo.org/912223 Signed-off-by: Sam James <sam <AT> gentoo.org> sys-devel/clang-common/clang-common-17.0.0.9999.ebuild | 3 ++- ...lang-common-17.0.0_rc2.ebuild => clang-common-17.0.0_rc2-r1.ebuild} | 3 ++- sys-devel/clang-common/clang-common-18.0.0.9999.ebuild | 3 ++- sys-devel/clang-common/clang-common-18.0.0_pre20230803.ebuild | 3 ++- sys-devel/clang-common/clang-common-18.0.0_pre20230810.ebuild | 3 ++- 5 files changed, 10 insertions(+), 5 deletions(-) diff --git a/sys-devel/clang-common/clang-common-17.0.0.9999.ebuild b/sys-devel/clang-common/clang-common-17.0.0.9999.ebuild index 9295c64406f2..a64e6b0f2602 100644 --- a/sys-devel/clang-common/clang-common-17.0.0.9999.ebuild +++ b/sys-devel/clang-common/clang-common-17.0.0.9999.ebuild @@ -142,7 +142,8 @@ src_install() { # Analogue to GLIBCXX_ASSERTIONS # https://libcxx.llvm.org/UsingLibcxx.html#assertions-mode - -D_LIBCPP_ENABLE_ASSERTIONS=1 + # https://libcxx.llvm.org/Hardening.html#using-hardened-mode + -D_LIBCPP_ENABLE_HARDENED_MODE=1 EOF fi diff --git a/sys-devel/clang-common/clang-common-17.0.0_rc2.ebuild b/sys-devel/clang-common/clang-common-17.0.0_rc2-r1.ebuild similarity index 98% rename from sys-devel/clang-common/clang-common-17.0.0_rc2.ebuild rename to sys-devel/clang-common/clang-common-17.0.0_rc2-r1.ebuild index 9295c64406f2..a64e6b0f2602 100644 --- a/sys-devel/clang-common/clang-common-17.0.0_rc2.ebuild +++ b/sys-devel/clang-common/clang-common-17.0.0_rc2-r1.ebuild @@ -142,7 +142,8 @@ src_install() { # Analogue to GLIBCXX_ASSERTIONS # https://libcxx.llvm.org/UsingLibcxx.html#assertions-mode - -D_LIBCPP_ENABLE_ASSERTIONS=1 + # https://libcxx.llvm.org/Hardening.html#using-hardened-mode + -D_LIBCPP_ENABLE_HARDENED_MODE=1 EOF fi diff --git a/sys-devel/clang-common/clang-common-18.0.0.9999.ebuild b/sys-devel/clang-common/clang-common-18.0.0.9999.ebuild index 9295c64406f2..a64e6b0f2602 100644 --- a/sys-devel/clang-common/clang-common-18.0.0.9999.ebuild +++ b/sys-devel/clang-common/clang-common-18.0.0.9999.ebuild @@ -142,7 +142,8 @@ src_install() { # Analogue to GLIBCXX_ASSERTIONS # https://libcxx.llvm.org/UsingLibcxx.html#assertions-mode - -D_LIBCPP_ENABLE_ASSERTIONS=1 + # https://libcxx.llvm.org/Hardening.html#using-hardened-mode + -D_LIBCPP_ENABLE_HARDENED_MODE=1 EOF fi diff --git a/sys-devel/clang-common/clang-common-18.0.0_pre20230803.ebuild b/sys-devel/clang-common/clang-common-18.0.0_pre20230803.ebuild index 9295c64406f2..a64e6b0f2602 100644 --- a/sys-devel/clang-common/clang-common-18.0.0_pre20230803.ebuild +++ b/sys-devel/clang-common/clang-common-18.0.0_pre20230803.ebuild @@ -142,7 +142,8 @@ src_install() { # Analogue to GLIBCXX_ASSERTIONS # https://libcxx.llvm.org/UsingLibcxx.html#assertions-mode - -D_LIBCPP_ENABLE_ASSERTIONS=1 + # https://libcxx.llvm.org/Hardening.html#using-hardened-mode + -D_LIBCPP_ENABLE_HARDENED_MODE=1 EOF fi diff --git a/sys-devel/clang-common/clang-common-18.0.0_pre20230810.ebuild b/sys-devel/clang-common/clang-common-18.0.0_pre20230810.ebuild index 9295c64406f2..a64e6b0f2602 100644 --- a/sys-devel/clang-common/clang-common-18.0.0_pre20230810.ebuild +++ b/sys-devel/clang-common/clang-common-18.0.0_pre20230810.ebuild @@ -142,7 +142,8 @@ src_install() { # Analogue to GLIBCXX_ASSERTIONS # https://libcxx.llvm.org/UsingLibcxx.html#assertions-mode - -D_LIBCPP_ENABLE_ASSERTIONS=1 + # https://libcxx.llvm.org/Hardening.html#using-hardened-mode + -D_LIBCPP_ENABLE_HARDENED_MODE=1 EOF fi