From owner-svn-src-all@freebsd.org Wed May 18 20:49:11 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 0D377B3F701; Wed, 18 May 2016 20:49:11 +0000 (UTC) (envelope-from imp@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 mx1.freebsd.org (Postfix) with ESMTPS id D25111A3B; Wed, 18 May 2016 20:49:10 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u4IKnA8W024045; Wed, 18 May 2016 20:49:10 GMT (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u4IKnAge024044; Wed, 18 May 2016 20:49:10 GMT (envelope-from imp@FreeBSD.org) Message-Id: <201605182049.u4IKnAge024044@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: imp set sender to imp@FreeBSD.org using -f From: Warner Losh Date: Wed, 18 May 2016 20:49:10 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r300165 - head X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 20:49:11 -0000 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