Received: by mail.netbsd.org (Postfix, from userid 605) id 77A9084DC6; Tue, 19 May 2020 19:01:11 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 024B384DB7 for ; Tue, 19 May 2020 19:01:11 +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 4T14P-d5IhWr for ; Tue, 19 May 2020 19:01:10 +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 55BDB84CE9 for ; Tue, 19 May 2020 19:01:10 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 49513FB27; Tue, 19 May 2020 19:01:10 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1589914870134840" MIME-Version: 1.0 Date: Tue, 19 May 2020 19:01:10 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/lang/rust-bin To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20200519190110.49513FB27@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1589914870134840 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Tue May 19 19:01:10 UTC 2020 Modified Files: pkgsrc/lang/rust-bin: Makefile Log Message: rust-bin: set CHECK_RELRO_SKIP for prebuilt binaries To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 pkgsrc/lang/rust-bin/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1589914870134840 Content-Disposition: inline Content-Length: 1268 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/rust-bin/Makefile diff -u pkgsrc/lang/rust-bin/Makefile:1.2 pkgsrc/lang/rust-bin/Makefile:1.3 --- pkgsrc/lang/rust-bin/Makefile:1.2 Mon May 18 16:22:25 2020 +++ pkgsrc/lang/rust-bin/Makefile Tue May 19 19:01:10 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2020/05/18 16:22:25 nia Exp $ +# $NetBSD: Makefile,v 1.3 2020/05/19 19:01:10 wiz Exp $ DISTNAME= rust-1.42.0 CATEGORIES= lang @@ -17,6 +17,15 @@ ONLY_FOR_PLATFORM+= Linux-*-aarch64 ONLY_FOR_PLATFORM+= Linux-*-i386 ONLY_FOR_PLATFORM+= Linux-*-x86_64 +CHECK_RELRO_SKIP+= lib/rustlib/x86_64-unknown-netbsd/bin/llvm-ar +CHECK_RELRO_SKIP+= lib/rustlib/x86_64-unknown-netbsd/bin/llvm-nm +CHECK_RELRO_SKIP+= lib/rustlib/x86_64-unknown-netbsd/bin/llvm-objcopy +CHECK_RELRO_SKIP+= lib/rustlib/x86_64-unknown-netbsd/bin/llvm-objdump +CHECK_RELRO_SKIP+= lib/rustlib/x86_64-unknown-netbsd/bin/llvm-profdata +CHECK_RELRO_SKIP+= lib/rustlib/x86_64-unknown-netbsd/bin/llvm-readobj +CHECK_RELRO_SKIP+= lib/rustlib/x86_64-unknown-netbsd/bin/llvm-size +CHECK_RELRO_SKIP+= lib/rustlib/x86_64-unknown-netbsd/bin/llvm-strip + # The NetBSD bootstraps are built for NetBSD 8 (because rust doesn't # build on 7). Mark earlier versions as broken. BROKEN_ON_PLATFORM+= NetBSD-[1-7].*-* --_----------=_1589914870134840--