From owner-svn-src-all@freebsd.org Wed Nov 13 13:20:07 2019 Return-Path: Delivered-To: svn-src-all@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 EF0DF1B0FD8; Wed, 13 Nov 2019 13:20:07 +0000 (UTC) (envelope-from kevans@freebsd.org) Received: from smtp.freebsd.org (smtp.freebsd.org [IPv6:2610:1c1:1:606c::24b:4]) (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 47ClbC5pxnz41Cd; Wed, 13 Nov 2019 13:20:07 +0000 (UTC) (envelope-from kevans@freebsd.org) Received: from mail-qv1-f48.google.com (mail-qv1-f48.google.com [209.85.219.48]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "GTS CA 1O1" (verified OK)) (Authenticated sender: kevans) by smtp.freebsd.org (Postfix) with ESMTPSA id 9F2631351B; Wed, 13 Nov 2019 13:20:07 +0000 (UTC) (envelope-from kevans@freebsd.org) Received: by mail-qv1-f48.google.com with SMTP id n12so783086qvt.1; Wed, 13 Nov 2019 05:20:07 -0800 (PST) X-Gm-Message-State: APjAAAVhKYuP1iN+G4cKP2YW1M7VggZiU9xfmtKANbcCk+HFXFKRG+jU d0aOsz9YBEn6IriCf3Ebx6C/qMzZs3S9UGvr+Ak= X-Google-Smtp-Source: APXvYqzjV75zFpc9q0Ok7VM92L6s5P99LQ7tzS1fcj55FBP7JpaVDV2OqwUprdmd/D+38AHOT5/h8EcpFECc2tOgPKE= X-Received: by 2002:a05:6214:22c:: with SMTP id j12mr2631472qvt.150.1573651206920; Wed, 13 Nov 2019 05:20:06 -0800 (PST) MIME-Version: 1.0 References: <201911122129.xACLTril005968@repo.freebsd.org> In-Reply-To: <201911122129.xACLTril005968@repo.freebsd.org> From: Kyle Evans Date: Wed, 13 Nov 2019 07:19:55 -0600 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: svn commit: r354661 - head To: John Baldwin Cc: src-committers , svn-src-all , svn-src-head Content-Type: text/plain; charset="UTF-8" X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.29 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, 13 Nov 2019 13:20:08 -0000 On Tue, Nov 12, 2019 at 3:29 PM John Baldwin wrote: > > Author: jhb > Date: Tue Nov 12 21:29:52 2019 > New Revision: 354661 > URL: https://svnweb.freebsd.org/changeset/base/354661 > > Log: > Force MK_CLANG_IS_CC on in XMAKE. > > This ensures that a bootstrap clang compiler is always installed as cc > in WORLDTMP. If it is only installed as 'clang' then /usr/bin/cc is > used during the build instead of the bootstrap compiler. > > Reviewed by: imp > MFC after: 1 month > Sponsored by: DARPA > Differential Revision: https://reviews.freebsd.org/D22332 > > Modified: > head/Makefile.inc1 > > Modified: head/Makefile.inc1 > ============================================================================== > --- head/Makefile.inc1 Tue Nov 12 21:26:50 2019 (r354660) > +++ head/Makefile.inc1 Tue Nov 12 21:29:52 2019 (r354661) > @@ -734,6 +734,7 @@ TMAKE= \ > # TOOLS_PREFIX set in BMAKE > XMAKE= ${BMAKE} \ > TARGET=${TARGET} TARGET_ARCH=${TARGET_ARCH} \ > + MK_CLANG_IS_CC=yes \ > MK_GDB=no MK_TESTS=no > > # kernel-tools stage This sounds wrong for any arch not currently supported by in-tree clang, and CI for those archs have been failing about since here: https://ci.freebsd.org/tinderbox/ Thanks, Kyle Evans