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 6757E158089 for ; Fri, 15 Sep 2023 06:58:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9BFBE2BC017; Fri, 15 Sep 2023 06:58:25 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7DDBD2BC017 for ; Fri, 15 Sep 2023 06:58:25 +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 8935E335D0A for ; Fri, 15 Sep 2023 06:58:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 35BF211A7 for ; Fri, 15 Sep 2023 06:58:23 +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: <1694761071.3791ad536e966dab33f62614f16b224fd10bf6a2.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/xz-utils/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-arch/xz-utils/xz-utils-9999.ebuild X-VCS-Directories: app-arch/xz-utils/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 3791ad536e966dab33f62614f16b224fd10bf6a2 X-VCS-Branch: master Date: Fri, 15 Sep 2023 06:58:23 +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: 71ed4822-2608-4b8a-adcc-b2ba7d8b51da X-Archives-Hash: 2fa796c9edc413cf1a1cd367f6b21b81 commit: 3791ad536e966dab33f62614f16b224fd10bf6a2 Author: Sam James gentoo org> AuthorDate: Fri Sep 15 06:55:56 2023 +0000 Commit: Sam James gentoo org> CommitDate: Fri Sep 15 06:57:51 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3791ad53 app-arch/xz-utils: disable ifunc w/ asan See https://github.com/tukaani-project/xz/issues/62. Signed-off-by: Sam James gentoo.org> app-arch/xz-utils/xz-utils-9999.ebuild | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app-arch/xz-utils/xz-utils-9999.ebuild b/app-arch/xz-utils/xz-utils-9999.ebuild index 11ddc15f918b..1ab617815a91 100644 --- a/app-arch/xz-utils/xz-utils-9999.ebuild +++ b/app-arch/xz-utils/xz-utils-9999.ebuild @@ -6,7 +6,7 @@ EAPI=8 -inherit libtool multilib multilib-minimal preserve-libs usr-ldscript +inherit flag-o-matic libtool multilib multilib-minimal preserve-libs usr-ldscript if [[ ${PV} == 9999 ]] ; then # Per tukaani.org, git.tukaani.org is a mirror of github and @@ -100,6 +100,10 @@ multilib_src_configure() { myconf+=( --disable-path-for-script ) fi + # ifunc is incompatible w/ asan + # https://github.com/tukaani-project/xz/issues/62#issuecomment-1719489932 + is-flagq -fsanitize=address && myconf+=( --disable-ifunc ) + ECONF_SOURCE="${S}" econf "${myconf[@]}" }