Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id 5C2F01A9239 for ; Mon, 28 Feb 2022 11:32:37 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id C189484F0D; Mon, 28 Feb 2022 11:32:27 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id E9D4C84F08 for ; Mon, 28 Feb 2022 11:32:26 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id mIrpupym5Gwm for ; Mon, 28 Feb 2022 11:32:26 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 487CD84F04 for ; Mon, 28 Feb 2022 11:32:26 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 43A81FB24; Mon, 28 Feb 2022 11:32:26 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_164604794667670" MIME-Version: 1.0 Date: Mon, 28 Feb 2022 11:32:26 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/lang/rust To: pkgsrc-changes@NetBSD.org Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20220228113226.43A81FB24@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_164604794667670 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jperkin Date: Mon Feb 28 11:32:26 UTC 2022 Modified Files: pkgsrc/lang/rust: options.mk Log Message: rust: Darwin/arm64 needs to use rust-llvm for now. To generate a diff of this commit: cvs rdiff -u -r1.17 -r1.18 pkgsrc/lang/rust/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_164604794667670 Content-Disposition: inline Content-Length: 796 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/rust/options.mk diff -u pkgsrc/lang/rust/options.mk:1.17 pkgsrc/lang/rust/options.mk:1.18 --- pkgsrc/lang/rust/options.mk:1.17 Sat Nov 20 16:09:46 2021 +++ pkgsrc/lang/rust/options.mk Mon Feb 28 11:32:26 2022 @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.17 2021/11/20 16:09:46 he Exp $ +# $NetBSD: options.mk,v 1.18 2022/02/28 11:32:26 jperkin Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.rust PKG_SUPPORTED_OPTIONS+= rust-cargo-static rust-docs @@ -9,7 +9,7 @@ PKG_SUPPORTED_OPTIONS+= rust-cargo-stati .if ${OPSYS} != "SunOS" PKG_SUPPORTED_OPTIONS+= rust-llvm # There may be compatibility issues with base LLVM. -. if !empty(HAVE_LLVM) +. if !empty(HAVE_LLVM) || !empty(MACHINE_PLATFORM:MDarwin-*-aarch64) PKG_SUGGESTED_OPTIONS+= rust-llvm . endif .endif --_----------=_164604794667670--