Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id 995797A1FE for ; Sat, 22 Apr 2017 12:22:03 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id D4CF984DBB; Sat, 22 Apr 2017 12:22:02 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 63DCD84DAE for ; Sat, 22 Apr 2017 12:22:02 +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 d5HOn8CWXiZj for ; Sat, 22 Apr 2017 12:22:02 +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 BCFEF84D81 for ; Sat, 22 Apr 2017 12:22:01 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id B0822FBE4; Sat, 22 Apr 2017 12:22:01 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1492863721260010" MIME-Version: 1.0 Date: Sat, 22 Apr 2017 12:22:01 +0000 From: "Maya Rashish" Subject: CVS commit: pkgsrc/lang/gcc49 To: pkgsrc-changes@NetBSD.org Reply-To: maya@netbsd.org X-Mailer: log_accum Message-Id: <20170422122201.B0822FBE4@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. --_----------=_1492863721260010 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: maya Date: Sat Apr 22 12:22:01 UTC 2017 Modified Files: pkgsrc/lang/gcc49: Makefile Log Message: gcc49: don't use precompiled headers for libstdc++ this is a build time optimization that causes hangs on some machines (netbsd-7/i386, but not netbsd-7/amd64). disable it globally instead of guessing which are broken. gcc{5,6} are already disabling it. PR pkg/51352: Compilation error on lang/gcc49 PR pkg/50210: Compilation of gcc 4.9 and 5.2 hangs on NetBSD 6.1_STABLE To generate a diff of this commit: cvs rdiff -u -r1.13 -r1.14 pkgsrc/lang/gcc49/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1492863721260010 Content-Disposition: inline Content-Length: 687 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/gcc49/Makefile diff -u pkgsrc/lang/gcc49/Makefile:1.13 pkgsrc/lang/gcc49/Makefile:1.14 --- pkgsrc/lang/gcc49/Makefile:1.13 Tue Sep 6 12:37:47 2016 +++ pkgsrc/lang/gcc49/Makefile Sat Apr 22 12:22:01 2017 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.13 2016/09/06 12:37:47 jperkin Exp $ +# $NetBSD: Makefile,v 1.14 2017/04/22 12:22:01 maya Exp $ GCC_PKGNAME= gcc49 .include "version.mk" @@ -38,6 +38,7 @@ GCC_PREFIX= ${PREFIX}/${GCC_SUBPREFIX} GCC_TARGET_MACHINE?= ${MACHINE_GNU_PLATFORM} GNU_CONFIGURE_PREFIX= ${GCC_PREFIX} INFO_FILES= yes +CONFIGURE_ARGS+= --disable-libstdcxx-pch UNLIMIT_RESOURCES+= datasize UNLIMIT_RESOURCES+= stacksize --_----------=_1492863721260010--