From owner-svn-src-all@freebsd.org Wed May 18 21:25:03 2016 Return-Path: Delivered-To: svn-src-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 B82B9B3FE5A; Wed, 18 May 2016 21:25:03 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id A8B141AF3; Wed, 18 May 2016 21:25:03 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from mail.xzibition.com (localhost [IPv6:::1]) by freefall.freebsd.org (Postfix) with ESMTP id A17D31A8D; Wed, 18 May 2016 21:25:03 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from mail.xzibition.com (localhost [172.31.3.2]) by mail.xzibition.com (Postfix) with ESMTP id 4F70A1FA2D; Wed, 18 May 2016 21:25:03 +0000 (UTC) X-Virus-Scanned: amavisd-new at mail.xzibition.com Received: from mail.xzibition.com ([172.31.3.2]) by mail.xzibition.com (mail.xzibition.com [172.31.3.2]) (amavisd-new, port 10026) with LMTP id fDV3GkUzumLl; Wed, 18 May 2016 21:25:00 +0000 (UTC) Subject: Re: svn commit: r300165 - head DKIM-Filter: OpenDKIM Filter v2.9.2 mail.xzibition.com 640CF1FA23 To: Warner Losh , src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org References: <201605182049.u4IKnAge024044@repo.freebsd.org> From: Bryan Drewery Organization: FreeBSD Message-ID: <021240eb-8ba3-3af3-cb13-45dbaa8a76ac@FreeBSD.org> Date: Wed, 18 May 2016 14:24:56 -0700 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:45.0) Gecko/20100101 Thunderbird/45.1.0 MIME-Version: 1.0 In-Reply-To: <201605182049.u4IKnAge024044@repo.freebsd.org> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 May 2016 21:25:03 -0000 On 5/18/16 1:49 PM, Warner Losh wrote: > Author: imp > Date: Wed May 18 20:49:09 2016 > New Revision: 300165 > URL: https://svnweb.freebsd.org/changeset/base/300165 > > Log: > mipsn32el is not a thing, remove it from the list of valid > architectures. There's no definition for it, nobody uses it > and it is unlikely to ever work. We can put it back when someone > demonstrates it running... > > The new default for armv6 is hard float, so extend that default > to the external toolchain support. > > Modified: > head/Makefile.inc1 > > Modified: head/Makefile.inc1 > ============================================================================== > --- head/Makefile.inc1 Wed May 18 20:06:45 2016 (r300164) > +++ head/Makefile.inc1 Wed May 18 20:49:09 2016 (r300165) > @@ -225,7 +225,6 @@ KNOWN_ARCHES?= aarch64/arm64 \ > mipsel/mips \ > mips64el/mips \ > mips64/mips \ > - mipsn32el/mips \ > mipsn32/mips \ > powerpc \ > powerpc64/powerpc \ > @@ -460,7 +459,7 @@ BFLAGS+= -B${CROSS_BINUTILS_PREFIX} > BFLAGS+= -B${WORLDTMP}/usr/bin > .endif > .if ${TARGET} == "arm" > -.if ${TARGET_ARCH:M*hf*} != "" > +.if ${TARGET_ARCH:Marmv6*} != "" && ${TARGET_CPUTYPE:M*soft*} != "" > TARGET_ABI= gnueabihf > .else > TARGET_ABI= gnueabi > It doesn't seem quite right... ~/git/freebsd # XCC=/usr/bin/cc TARGET=arm TARGET_ARCH=armv6 make -f Makefile.inc1 -V TARGET_ABI -V TARGET_CPUTYPE gnueabi (blank) Did you mean ${TARGET_CPUTYPE:M*soft*} == "" ? -- Regards, Bryan Drewery