From owner-svn-ports-all@freebsd.org Sun Mar 11 20:33:38 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 0B4CCF4CD48; Sun, 11 Mar 2018 20:33:38 +0000 (UTC) (envelope-from gerald@pfeifer.com) Received: from ainaz.pair.com (ainaz.pair.com [209.68.2.66]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B1F8C7DBCB; Sun, 11 Mar 2018 20:33:37 +0000 (UTC) (envelope-from gerald@pfeifer.com) Received: from ainaz.pair.com (localhost [127.0.0.1]) by ainaz.pair.com (Postfix) with ESMTP id 1EF553F758; Sun, 11 Mar 2018 16:33:31 -0400 (EDT) Received: from [10.10.3.92] (unknown [179.191.113.10]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ainaz.pair.com (Postfix) with ESMTPSA id 0CCC53F757; Sun, 11 Mar 2018 16:33:29 -0400 (EDT) Date: Sun, 11 Mar 2018 17:33:27 -0300 (-03) From: Gerald Pfeifer To: Mark Linimon , ericturgeon.bsd@gmail.com cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r464145 - head/lang/gcc6-aux In-Reply-To: <201803110625.w2B6PStS047862@repo.freebsd.org> Message-ID: References: <201803110625.w2B6PStS047862@repo.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 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: Sun, 11 Mar 2018 20:33:38 -0000 On Sun, 11 Mar 2018, Mark Linimon wrote: > Author: linimon > Date: Sun Mar 11 06:25:28 2018 > New Revision: 464145 > > Log: > Mark as broken on aarch64/12. > > PR: 224444 > Approved by: ericturgeon.bsd@gmail.com (maintainer timeout, 2 months) Looking that this is based on a GCC snapshot half a year old (GCC does weekly snapshots of release branches) I am concernd this port is generally falling behind. GCC 6 is the oldest active GCC release branch and not seeing huge changes any more, but still some, so updating every four to six months seems appropriate. And, not sure this would have helped, but lang/gcc6 has an explicit workaround for an aarch64 build issue which I did not find in gcc6-aux: .elif ${ARCH} == aarch64 || ${ARCH} == armv6 || ${ARCH} == armv7 . if ${COMPILER_TYPE} == clang . if empty(PORT_OPTIONS:MBOOTSTRAP) MAKE_ARGS+=CXXFLAGS=-fbracket-depth=512 . else MAKE_ARGS+=STAGE1_CXXFLAGS=-fbracket-depth=512 . endif . endif Perhaps worth a try for someone who can test? Gerald