From owner-svn-src-head@freebsd.org Wed Oct 12 13:57:05 2016 Return-Path: Delivered-To: svn-src-head@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 A4236C0E3CE; Wed, 12 Oct 2016 13:57:05 +0000 (UTC) (envelope-from rb743@hermes.cam.ac.uk) Received: from ppsw-41.csi.cam.ac.uk (ppsw-41.csi.cam.ac.uk [131.111.8.141]) (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 6AC35D79; Wed, 12 Oct 2016 13:57:05 +0000 (UTC) (envelope-from rb743@hermes.cam.ac.uk) X-Cam-AntiVirus: no malware found X-Cam-ScannerInfo: http://www.cam.ac.uk/cs/email/scanner/ Received: from sc1.bsdpad.com ([163.172.212.18]:62006) by ppsw-41.csi.cam.ac.uk (smtp.hermes.cam.ac.uk [131.111.8.159]:587) with esmtpsa (LOGIN:rb743) (TLSv1:ECDHE-RSA-AES256-SHA:256) id 1buK1m-0001Ns-QG (Exim 4.86_36-e07b163) (return-path ); Wed, 12 Oct 2016 14:57:02 +0100 Date: Wed, 12 Oct 2016 13:56:46 +0000 From: Ruslan Bukin To: Ed Maste Cc: Ruslan Bukin , "src-committers@freebsd.org" , "svn-src-all@freebsd.org" , "svn-src-head@freebsd.org" Subject: Re: svn commit: r306364 - in head: lib/libc/tests share/mk Message-ID: <20161012135646.GA63534@bsdpad.com> References: <201609270944.u8R9iUqi035006@repo.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.6.1 (2016-04-27) Sender: "R. Bukin" X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Oct 2016 13:57:05 -0000 On Wed, Oct 05, 2016 at 08:44:39PM +0000, Ed Maste wrote: > On 27 September 2016 at 09:44, Ruslan Bukin wrote: > > Author: br > > Date: Tue Sep 27 09:44:30 2016 > > New Revision: 306364 > > URL: https://svnweb.freebsd.org/changeset/base/306364 > > > > Log: > > Mark SSP broken on MIPS. > > This needs an adjustment in sys/conf/kern.opts.mk as well it seems; > 'make showconfig' (as used by makeman to generate src.conf.5) now > reports SSP is both 'no' and 'yes' on mips: > > % make TARGET=mips TARGET_ARCH=mips showconfig | grep SSP > MK_SSP = no > MK_SSP = yes > I made a change, but for some reason it works from buildenv only: make TARGET=mips TARGET_ARCH=mips buildenv % make showconfig |grep SSP MK_SSP = no It looks like MACHINE_CPUARCH is not exported by showconfig. Ruslan