From owner-svn-src-head@freebsd.org Sun May 3 23:10:20 2020 Return-Path: Delivered-To: svn-src-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id B7DD62BC7F8; Sun, 3 May 2020 23:10:20 +0000 (UTC) (envelope-from rpokala@freebsd.org) Received: from smtp.freebsd.org (smtp.freebsd.org [96.47.72.83]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "smtp.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 49FhXr4GMRz4QVm; Sun, 3 May 2020 23:10:20 +0000 (UTC) (envelope-from rpokala@freebsd.org) Received: from [192.168.1.10] (unknown [IPv6:2601:641:300:6e9f:48ba:ae4d:c5aa:fe3e]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) (Authenticated sender: rpokala) by smtp.freebsd.org (Postfix) with ESMTPSA id EB00716C2; Sun, 3 May 2020 23:10:19 +0000 (UTC) (envelope-from rpokala@freebsd.org) User-Agent: Microsoft-MacOutlook/16.36.20041300 Date: Sun, 03 May 2020 16:10:16 -0700 Subject: Re: svn commit: r360453 - head From: Ravi Pokala To: Ravi Pokala , Bryan Drewery , , , Message-ID: <1F3E0402-D5EB-4FB5-AB57-B965DE83E702@panasas.com> Thread-Topic: svn commit: r360453 - head References: <202004290218.03T2IdZM091899@repo.freebsd.org> In-Reply-To: Mime-version: 1.0 Content-type: text/plain; charset="UTF-8" Content-transfer-encoding: quoted-printable X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.29 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: Sun, 03 May 2020 23:10:20 -0000 -----Original Message----- From: on behalf of Ravi Pokala Date: 2020-05-03, Sunday at 14:24 To: Bryan Drewery , , , Subject: Re: svn commit: r360453 - head Interesting. This change purports to fix a problem with r360443, but I = had no trouble with that change (make tinderbox WITH_META_MODE=3DYES), while t= his change results in an early fatal error: make[2]: "Makefile" line 718: "Target architecture for amd64/conf/G= ENERIC unknown. config(8) likely too old." I'm running kernel and world r360270. Interesting; I was unable to build at HOL; was able to able to buildworld a= nd kernel at r360443, rebooted into that, synced to HOL, and now able to bui= ld again. -Ravi Thoughts? Thanks, Ravi (rpokala@) =EF=BB=BF-----Original Message----- From: on behalf of Bryan Drewery Date: 2020-04-28, Tuesday at 19:18 To: , , Subject: svn commit: r360453 - head Author: bdrewery Date: Wed Apr 29 02:18:39 2020 New Revision: 360453 URL: https://svnweb.freebsd.org/changeset/base/360453 Log: Use universe-toolchain config(8) This is a temporary hack to aid with config(8) changing in r36044= 3. It will not work for all cases. env PATH is used because universe-toolchain is only built when wo= rlds are built, and then only if clang is needed, so it may not exist. universe-toolchain needs to be expanded to always be built, inspe= cted to remove non-cross-build-safe tools, used for buildworld/buildkerne= l, and potentially incremental build support. Sponsored by: Dell EMC Modified: head/Makefile Modified: head/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- head/Makefile Tue Apr 28 20:34:27 2020 (r360452) +++ head/Makefile Wed Apr 29 02:18:39 2020 (r360453) @@ -711,6 +711,7 @@ KERNCONFS!=3D cd ${KERNSRCDIR}/${TARGET}/conf && = \ universe_kernconfs: universe_kernels_prologue .PHONY .for kernel in ${KERNCONFS} TARGET_ARCH_${kernel}!=3D cd ${KERNSRCDIR}/${TARGET}/conf && \ + env PATH=3D${HOST_OBJTOP}/tmp/legacy/bin:${PATH:Q} \ config -m ${KERNSRCDIR}/${TARGET}/conf/${kernel} 2> /dev/null | \ grep -v WARNING: | cut -f 2 .if empty(TARGET_ARCH_${kernel})