From owner-svn-ports-all@FreeBSD.ORG Wed Sep 12 23:20:44 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 62F71106564A; Wed, 12 Sep 2012 23:20:44 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 4E0988FC0C; Wed, 12 Sep 2012 23:20:44 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q8CNKi1d069269; Wed, 12 Sep 2012 23:20:44 GMT (envelope-from gerald@svn.freebsd.org) Received: (from gerald@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q8CNKijw069267; Wed, 12 Sep 2012 23:20:44 GMT (envelope-from gerald@svn.freebsd.org) Message-Id: <201209122320.q8CNKijw069267@svn.freebsd.org> From: Gerald Pfeifer Date: Wed, 12 Sep 2012 23:20:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r304167 - head/lang/gcc42 X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Sep 2012 23:20:44 -0000 Author: gerald Date: Wed Sep 12 23:20:43 2012 New Revision: 304167 URL: http://svn.freebsd.org/changeset/ports/304167 Log: Just build, do not bootstrap, this version of GCC in our ports tree. This speeds up a full port/package test cycle by 50% on a 4-core system; a simple build/install will benefit even more. On the way, have he compiler report itself as "FreeBSD Ports Collection". Modified: head/lang/gcc42/Makefile Modified: head/lang/gcc42/Makefile ============================================================================== --- head/lang/gcc42/Makefile Wed Sep 12 22:07:07 2012 (r304166) +++ head/lang/gcc42/Makefile Wed Sep 12 23:20:43 2012 (r304167) @@ -51,7 +51,8 @@ WRKSRC= ${WRKDIR}/build TARGLIB= ${PREFIX}/lib/gcc${SUFFIX} LIBEXEC= ${PREFIX}/libexec/gcc${SUFFIX} GNU_CONFIGURE= yes -CONFIGURE_ARGS+=--disable-nls \ +CONFIGURE_ARGS+=--disable-bootstrap \ + --disable-nls \ --libdir=${TARGLIB} \ --libexecdir=${LIBEXEC} \ --program-suffix=${SUFFIX} \ @@ -60,9 +61,9 @@ CONFIGURE_ARGS+=--disable-nls \ --with-gxx-include-dir=${TARGLIB}/include/c++/ \ --with-ld=/usr/bin/ld \ --with-libiconv-prefix=${LOCALBASE} \ + --with-pkgversion="FreeBSD Ports Collection" \ --with-system-zlib MAKE_ARGS+= MAKEINFOFLAGS="--no-split" -ALL_TARGET= bootstrap-lean USE_LDCONFIG= ${TARGLIB} PLIST_SUB= GCC_VER=${PORTVERSION:C/(.+)\.[0-9]+/\1/} \ GNU_HOST=${CONFIGURE_TARGET} \