From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1351197-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 1F277158086 for <garchives@archives.gentoo.org>; Mon, 20 Dec 2021 04:08:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 839E52BC00C; Mon, 20 Dec 2021 04:08:51 +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 8C4CC2BC027 for <gentoo-commits@lists.gentoo.org>; Mon, 20 Dec 2021 04:08:50 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 189BE342C92 for <gentoo-commits@lists.gentoo.org>; Mon, 20 Dec 2021 04:08:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 807B8253 for <gentoo-commits@lists.gentoo.org>; Mon, 20 Dec 2021 04:08:46 +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: <1639973311.5882d0d75c2c73f99c0e8f89e15ba532b5e2313c.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/mold/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-devel/mold/mold-9999.ebuild X-VCS-Directories: sys-devel/mold/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 5882d0d75c2c73f99c0e8f89e15ba532b5e2313c X-VCS-Branch: master Date: Mon, 20 Dec 2021 04:08:46 +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: f6965d65-905f-4605-9ebd-bd3c92be9c15 X-Archives-Hash: f355f3f23a5478ad12a03773cb85e2f7 commit: 5882d0d75c2c73f99c0e8f89e15ba532b5e2313c Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Mon Dec 20 01:54:55 2021 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Mon Dec 20 04:08:31 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5882d0d7 sys-devel/mold: use system xxhash in 9999 Doesn't seem like earlier versions actually used it yet. Signed-off-by: Sam James <sam <AT> gentoo.org> sys-devel/mold/mold-9999.ebuild | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sys-devel/mold/mold-9999.ebuild b/sys-devel/mold/mold-9999.ebuild index da4500cc160d..74953d28fb02 100644 --- a/sys-devel/mold/mold-9999.ebuild +++ b/sys-devel/mold/mold-9999.ebuild @@ -44,6 +44,7 @@ src_compile() { emake \ SYSTEM_TBB=1 \ SYSTEM_MIMALLOC=1 \ + SYSTEM_XXHASH=1 \ STRIP="true" \ LIBDIR="${EPREFIX}/usr/$(get_libdir)" } @@ -59,6 +60,7 @@ src_install() { emake \ SYSTEM_TBB=1 \ SYSTEM_MIMALLOC=1 \ + SYSTEM_XXHASH=1 \ DESTDIR="${ED}" \ PREFIX="${EPREFIX}/usr" \ LIBDIR="${EPREFIX}/usr/$(get_libdir)" \