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 6B25D158013 for ; Sun, 3 Dec 2023 04:45:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9E0352BC019; Sun, 3 Dec 2023 04:45:12 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 8075E2BC019 for ; Sun, 3 Dec 2023 04:45:12 +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 B03DC335CB9 for ; Sun, 3 Dec 2023 04:45:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 44D751256 for ; Sun, 3 Dec 2023 04:45:10 +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: <1701578700.9541f03613b3824f83a26dd1f0654f1e031a6050.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/dbus-broker/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/dbus-broker/dbus-broker-33-r1.ebuild sys-apps/dbus-broker/dbus-broker-33.ebuild sys-apps/dbus-broker/dbus-broker-9999.ebuild X-VCS-Directories: sys-apps/dbus-broker/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 9541f03613b3824f83a26dd1f0654f1e031a6050 X-VCS-Branch: master Date: Sun, 3 Dec 2023 04:45:10 +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: fe5417ec-5559-4f3e-ba3c-405a39cc117d X-Archives-Hash: f72cf311c5fe2b9ef7cdea619e810f3c commit: 9541f03613b3824f83a26dd1f0654f1e031a6050 Author: Sam James gentoo org> AuthorDate: Sun Dec 3 04:43:58 2023 +0000 Commit: Sam James gentoo org> CommitDate: Sun Dec 3 04:45:00 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9541f036 sys-apps/dbus-broker: filter-lto & -fno-strict-aliasing Initially hit a test failure w/ -fno-semantic-interposition and hadn't yet had a chance to dig in more, but it looks like it's really an aliasing issue exposed by it (dbus-broker doesn't rely on LD_PRELOAD at all). So, follow up to ac0bc46eaa27105ea7ca3d854ecaeaa3b99e9880, filter-lto and pass -fno-strict-aliasing with a new revision as this may well break in other cases even w/o -fno-semantic-interposition. Bug: https://bugs.gentoo.org/919100 Signed-off-by: Sam James gentoo.org> .../dbus-broker/{dbus-broker-33.ebuild => dbus-broker-33-r1.ebuild} | 5 +++-- sys-apps/dbus-broker/dbus-broker-9999.ebuild | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/sys-apps/dbus-broker/dbus-broker-33.ebuild b/sys-apps/dbus-broker/dbus-broker-33-r1.ebuild similarity index 90% rename from sys-apps/dbus-broker/dbus-broker-33.ebuild rename to sys-apps/dbus-broker/dbus-broker-33-r1.ebuild index 645121c3f9b2..aae6b444ce7e 100644 --- a/sys-apps/dbus-broker/dbus-broker-33.ebuild +++ b/sys-apps/dbus-broker/dbus-broker-33-r1.ebuild @@ -50,8 +50,9 @@ src_unpack() { fi src_configure() { - # Causes test failures - filter-flags -fno-semantic-interposition + # Causes test failures with -fno-semantic-interposition (bug #919100) + append-flags -fno-strict-aliasing + filter-lto local emesonargs=( $(meson_use apparmor) diff --git a/sys-apps/dbus-broker/dbus-broker-9999.ebuild b/sys-apps/dbus-broker/dbus-broker-9999.ebuild index 206bac4cf1bb..22288e01ccf3 100644 --- a/sys-apps/dbus-broker/dbus-broker-9999.ebuild +++ b/sys-apps/dbus-broker/dbus-broker-9999.ebuild @@ -50,8 +50,9 @@ src_unpack() { fi src_configure() { - # Causes test failures - filter-flags -fno-semantic-interposition + # Causes test failures with -fno-semantic-interposition (bug #919100) + append-flags -fno-strict-aliasing + filter-lto local emesonargs=( $(meson_use apparmor)