Received: by mail.netbsd.org (Postfix, from userid 605) id 13A6984D21; Fri, 15 Oct 2021 19:36:37 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 4E9EC84D1C for ; Fri, 15 Oct 2021 19:36:36 +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 fUWm6kVon27F for ; Fri, 15 Oct 2021 19:36:35 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id A0DEF84D0E for ; Fri, 15 Oct 2021 19:36:35 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 9A5FEFA94; Fri, 15 Oct 2021 19:36:35 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1634326595151960" MIME-Version: 1.0 Date: Fri, 15 Oct 2021 19:36:35 +0000 From: "Tobias Nygren" Subject: CVS commit: pkgsrc/devel/boost-libs To: pkgsrc-changes@NetBSD.org Reply-To: tnn@netbsd.org X-Mailer: log_accum Message-Id: <20211015193635.9A5FEFA94@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1634326595151960 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: tnn Date: Fri Oct 15 19:36:35 UTC 2021 Modified Files: pkgsrc/devel/boost-libs: Makefile Log Message: boost-libs: disable pch everywhere Operating under the assumption that more and more platforms will be RELRO enabled and this will keep breaking because the conditional is not kept up-to-date. (it broke on aarch64 after RELRO enablement) To generate a diff of this commit: cvs rdiff -u -r1.90 -r1.91 pkgsrc/devel/boost-libs/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1634326595151960 Content-Disposition: inline Content-Length: 1007 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/boost-libs/Makefile diff -u pkgsrc/devel/boost-libs/Makefile:1.90 pkgsrc/devel/boost-libs/Makefile:1.91 --- pkgsrc/devel/boost-libs/Makefile:1.90 Thu Sep 30 20:34:17 2021 +++ pkgsrc/devel/boost-libs/Makefile Fri Oct 15 19:36:35 2021 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.90 2021/09/30 20:34:17 adam Exp $ +# $NetBSD: Makefile,v 1.91 2021/10/15 19:36:35 tnn Exp $ BOOST_PACKAGE= libs BOOST_COMMENT= (binary libraries) @@ -14,12 +14,8 @@ PLIST_VARS+= backtrace context fiber lo .include "../../mk/compiler.mk" -.if (${OPSYS} == "NetBSD" && \ - ((${MACHINE_ARCH} == "i386") || \ - (!empty(MACHINE_ARCH:Mearm*) && !empty(PKGSRC_COMPILER:Mgcc)))) || \ - (!empty(MACHINE_PLATFORM:MNetBSD-[89].*-x86_64) && !empty(PKGSRC_COMPILER:Mgcc)) +# pch enabled build is generally fragile and breaks with RELRO BJAM_ARGS+= pch=off -.endif .if !empty(MACHINE_ARCH:Malpha) || !empty(MACHINE_ARCH:Mm68k) || !empty(MACHINE_ARCH:Msparc64) BJAM_ARGS+= --without-context --_----------=_1634326595151960--