From owner-svn-ports-all@freebsd.org Fri Jan 5 05:06:40 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 610ACEB1D53; Fri, 5 Jan 2018 05:06:40 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [96.47.72.132]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 403577591D; Fri, 5 Jan 2018 05:06:40 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1354) id 89010D86A; Fri, 5 Jan 2018 05:06:39 +0000 (UTC) From: Jan Beich To: Mark Linimon Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r457351 - in head: audio/zita-convolver audio/zita-convolver/files biology/phyml games/trigger-rally games/trigger-rally/files References: <201712270736.vBR7a6l0062082@repo.freebsd.org> Date: Fri, 05 Jan 2018 06:06:34 +0100 In-Reply-To: <201712270736.vBR7a6l0062082@repo.freebsd.org> (Mark Linimon's message of "Wed, 27 Dec 2017 07:36:05 +0000 (UTC)") Message-ID: MIME-Version: 1.0 Content-Type: text/plain 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: Fri, 05 Jan 2018 05:06:40 -0000 Mark Linimon writes: > Author: linimon > Date: Wed Dec 27 07:36:05 2017 > New Revision: 457351 > URL: https://svnweb.freebsd.org/changeset/ports/457351 > > Log: > Disable the extra flag "-march=native" on arm to fix builds. > > Approved by: portmgr (tier-2 blanket) > Obtained from: lonesome.com -exp run Why limit the fixes to Tier2 archs? -march=native is not allowed outside of MANUAL_PACKAGE_BUILD even for i386/amd64 to avoid a random package cluster machine being the lowest common denominator for CPU support. -mtune=native on arm *probably* has the same implications as -march=native on x86. > -BROKEN_aarch64= fails to compile: c++: the clang compiler does not support '-march=native' > -BROKEN_armv6= fails to compile: c++: the clang compiler does not support '-march=native' > -BROKEN_armv7= fails to compile: c++: the clang compiler does not support '-march=native' > +#BROKEN_aarch64= fails to compile: c++: the clang compiler does not support '-march=native' > +#BROKEN_armv6= fails to compile: c++: the clang compiler does not support '-march=native' > +#BROKEN_armv7= fails to compile: c++: the clang compiler does not support '-march=native' What's the intent here?