From owner-svn-ports-all@freebsd.org Wed Jul 4 15:49:36 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D96181043BA8; Wed, 4 Jul 2018 15:49:36 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8EB178362E; Wed, 4 Jul 2018 15:49:36 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 6FFC75236; Wed, 4 Jul 2018 15:49:36 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w64Fna8v076296; Wed, 4 Jul 2018 15:49:36 GMT (envelope-from gerald@FreeBSD.org) Received: (from gerald@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w64FnakF076294; Wed, 4 Jul 2018 15:49:36 GMT (envelope-from gerald@FreeBSD.org) Message-Id: <201807041549.w64FnakF076294@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gerald set sender to gerald@FreeBSD.org using -f From: Gerald Pfeifer Date: Wed, 4 Jul 2018 15:49:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473895 - in head/lang: gcc6 gcc6-devel X-SVN-Group: ports-head X-SVN-Commit-Author: gerald X-SVN-Commit-Paths: in head/lang: gcc6 gcc6-devel X-SVN-Commit-Revision: 473895 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.27 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, 04 Jul 2018 15:49:37 -0000 Author: gerald Date: Wed Jul 4 15:49:35 2018 New Revision: 473895 URL: https://svnweb.freebsd.org/changeset/ports/473895 Log: Improve the explanation on why on powerpc64 we require USE_GCC=5 and not one of the more common/flexbile options such as USE_GCC=yes. Reported by: linimon Modified: head/lang/gcc6-devel/Makefile head/lang/gcc6/Makefile Modified: head/lang/gcc6-devel/Makefile ============================================================================== --- head/lang/gcc6-devel/Makefile Wed Jul 4 14:48:29 2018 (r473894) +++ head/lang/gcc6-devel/Makefile Wed Jul 4 15:49:35 2018 (r473895) @@ -80,7 +80,9 @@ MAKE_ARGS+=STAGE1_CXXFLAGS=-fbracket-depth=512 .elif ${ARCH} == powerpc64 CONFIGURE_ENV+= UNAME_m="powerpc64" -USE_GCC= 5 # Cannot require ourselves, needs to be at least 4.9. +USE_GCC= 5 # This port requires at least GCC 4.9, and we need + # to ensure not to cause a dependency on itself (so + # USE_GCC=yes or USE_GCC=X+ are not an option). .elif ${ARCH} == powerpcspe CONFIGURE_ARGS+= --with-cpu=8540 --enable-e500_double --without-fp Modified: head/lang/gcc6/Makefile ============================================================================== --- head/lang/gcc6/Makefile Wed Jul 4 14:48:29 2018 (r473894) +++ head/lang/gcc6/Makefile Wed Jul 4 15:49:35 2018 (r473895) @@ -80,7 +80,9 @@ MAKE_ARGS+=STAGE1_CXXFLAGS=-fbracket-depth=512 .elif ${ARCH} == powerpc64 CONFIGURE_ENV+= UNAME_m="powerpc64" -USE_GCC= 5 # Cannot require ourselves, needs to be at least 4.9. +USE_GCC= 5 # This port requires at least GCC 4.9, and we need + # to ensure not to cause a dependency on itself (so + # USE_GCC=yes or USE_GCC=X+ are not an option). .elif ${ARCH} == powerpcspe CONFIGURE_ARGS+= --with-cpu=8540 --enable-e500_double --without-fp