Received: by mail.netbsd.org (Postfix, from userid 605) id 5D93784FB5; Thu, 5 May 2022 10:27:35 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 9A5F584FB4 for ; Thu, 5 May 2022 10:27:34 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id E8YauTg_10mH for ; Thu, 5 May 2022 10:27:34 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id F010B84D35 for ; Thu, 5 May 2022 10:27:33 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id E94B2FB1A; Thu, 5 May 2022 10:27:33 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1651746453289590" MIME-Version: 1.0 Date: Thu, 5 May 2022 10:27:33 +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: <20220505102733.E94B2FB1A@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1651746453289590 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jperkin Date: Thu May 5 10:27:33 UTC 2022 Modified Files: pkgsrc/lang/rust: options.mk Log Message: rust: Enable rust-llvm on macOS arm64. To generate a diff of this commit: cvs rdiff -u -r1.22 -r1.23 pkgsrc/lang/rust/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1651746453289590 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.22 pkgsrc/lang/rust/options.mk:1.23 --- pkgsrc/lang/rust/options.mk:1.22 Sat Apr 23 15:54:34 2022 +++ pkgsrc/lang/rust/options.mk Thu May 5 10:27:33 2022 @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.22 2022/04/23 15:54:34 he Exp $ +# $NetBSD: options.mk,v 1.23 2022/05/05 10:27:33 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 --_----------=_1651746453289590--