Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=KNxzx8ge; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=wT89vSei Received: by mail.netbsd.org (Postfix, from userid 605) id 2E4C284D44; Fri, 26 Apr 2024 09:57:36 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1714125456; bh=TcNL6bfdmcPqHn9HgkBWCie7GO46e3H0Yus7xug0S6I=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=KNxzx8geFu2IV7uVWdueOhDGOzMETVwPk/F531mBG7NAbFSiBDIwoNZBnAJ3KrMKP R8QTHx/QihlWuICwwJsNpF5yrNWd/XUFxNuirZLT9CDW7/JSxVELc/FWekUmlQzy3h fijqbgQP12NiR1DlXiDeJZ/UPiZXV+ywdvuSegb4= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 1B47F84D2D for ; Fri, 26 Apr 2024 09:57:35 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Authentication-Results: mail.netbsd.org (amavisd-new); dkim=pass (1024-bit key) header.d=netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id 0WWD7-7qcJXx for ; Fri, 26 Apr 2024 09:57:34 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 609E884CCF for ; Fri, 26 Apr 2024 09:57:34 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1714125454; bh=TcNL6bfdmcPqHn9HgkBWCie7GO46e3H0Yus7xug0S6I=; h=Date:From:Subject:To:Reply-To; b=wT89vSeiD9rJpBhO96fIkMijdPe4KorX3GlI5GBgOPGsfi5le5XmcJjEURAPYIQ1X PUBEEs7L08qDkkgIrWx/8uwSXdtxeAllI+s+8jQQrFGTpj1c1TzpMRDPp+6KMuPMGe GhVDLawGYPWjpcLYYE5+N4W/iTdYhlZpbAK9dM5g= Received: by cvs.NetBSD.org (Postfix, from userid 500) id 5801DFA2C; Fri, 26 Apr 2024 09:57:34 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1714125454117830" MIME-Version: 1.0 Date: Fri, 26 Apr 2024 09:57:34 +0000 From: "nikita" Subject: CVS commit: pkgsrc/lang/zig To: pkgsrc-changes@NetBSD.org Reply-To: nikita@netbsd.org X-Mailer: log_accum Message-Id: <20240426095734.5801DFA2C@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1714125454117830 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nikita Date: Fri Apr 26 09:57:34 UTC 2024 Modified Files: pkgsrc/lang/zig: Makefile Log Message: zig: make pie again. To generate a diff of this commit: cvs rdiff -u -r1.34 -r1.35 pkgsrc/lang/zig/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1714125454117830 Content-Disposition: inline Content-Length: 1215 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/zig/Makefile diff -u pkgsrc/lang/zig/Makefile:1.34 pkgsrc/lang/zig/Makefile:1.35 --- pkgsrc/lang/zig/Makefile:1.34 Thu Apr 25 10:05:24 2024 +++ pkgsrc/lang/zig/Makefile Fri Apr 26 09:57:34 2024 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.34 2024/04/25 10:05:24 nikita Exp $ +# $NetBSD: Makefile,v 1.35 2024/04/26 09:57:34 nikita Exp $ DISTNAME= zig-0.12.0 CATEGORIES= lang @@ -22,6 +22,7 @@ CMAKE_CONFIGURE_ARGS+= -DCMAKE_INSTALL_P # avoid full-cu-features available to build host, # in other words ensure that we run everywhere CMAKE_CONFIGURE_ARGS+= -DZIG_TARGET_MCPU=baseline +CMAKE_CONFIGURE_ARGS+= -DZIG_PIE=ON CHECK_PORTABILITY_SKIP+= ci/azure/macos_script BUILDLINK_TRANSFORM+= rm:-Werror @@ -29,9 +30,10 @@ BUILDLINK_TRANSFORM+= rm:-Werror UNLIMIT_RESOURCES= stacksize # \todo: There is currently an issue building this as a PIE -MKPIE_SUPPORTED= no +#MKPIE_SUPPORTED= no # RELRO checks fail for this package at the moment -RELRO_SUPPORTED= no +#RELRO_SUPPORTED= no +# TODO: /usr/bin/env + /bin/env in lib/std/zig/system.zig # after install, because the zig binary ends up in paths like # ./zig-0.10.1/zig-cache/o/e6445b80597d6bc8fe865e7254800ac9/zig --_----------=_1714125454117830--