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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 76A7F1580FD for ; Fri, 27 Dec 2024 11:43:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BC235E03DF; Fri, 27 Dec 2024 11:43:07 +0000 (UTC) Received: from smtp.gentoo.org (mail.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 62F39E03DF for ; Fri, 27 Dec 2024 11:43:07 +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 06E0033BE32 for ; Fri, 27 Dec 2024 11:43:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 429D1FA7 for ; Fri, 27 Dec 2024 11:43:04 +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: <1735299766.00098905947bf63e40dcf83b55ffa226156994e5.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/mimalloc/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/mimalloc/mimalloc-2.1.7.ebuild X-VCS-Directories: dev-libs/mimalloc/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 00098905947bf63e40dcf83b55ffa226156994e5 X-VCS-Branch: master Date: Fri, 27 Dec 2024 11:43:04 +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: 5fe341b5-350c-4b3d-9ca0-814c518d1e3f X-Archives-Hash: 4147dcff963be28cdf823b0240dafe8a commit: 00098905947bf63e40dcf83b55ffa226156994e5 Author: Sam James gentoo org> AuthorDate: Fri Dec 27 09:25:56 2024 +0000 Commit: Sam James gentoo org> CommitDate: Fri Dec 27 11:42:46 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00098905 dev-libs/mimalloc: add USE=debug Inspired by bug #947005. Bug: https://bugs.gentoo.org/947005 Signed-off-by: Sam James gentoo.org> dev-libs/mimalloc/mimalloc-2.1.7.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dev-libs/mimalloc/mimalloc-2.1.7.ebuild b/dev-libs/mimalloc/mimalloc-2.1.7.ebuild index d72d8e0d7a12..1d649bf86b04 100644 --- a/dev-libs/mimalloc/mimalloc-2.1.7.ebuild +++ b/dev-libs/mimalloc/mimalloc-2.1.7.ebuild @@ -12,13 +12,14 @@ SRC_URI="https://github.com/microsoft/mimalloc/archive/refs/tags/v${PV}.tar.gz - LICENSE="MIT" SLOT="0/2" KEYWORDS="amd64 ~arm ~arm64 ~loong ~m68k ~ppc ~ppc64 ~riscv ~sparc ~x86" -IUSE="hardened test valgrind" +IUSE="debug hardened test valgrind" RESTRICT="!test? ( test )" DEPEND="valgrind? ( dev-debug/valgrind )" src_configure() { local mycmakeargs=( + -DMI_DEBUG_FULL=$(usex debug) -DMI_SECURE=$(usex hardened) -DMI_INSTALL_TOPLEVEL=ON -DMI_BUILD_TESTS=$(usex test)