From owner-svn-src-all@freebsd.org Wed Jun 27 20:53:30 2018 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5C2901010826; Wed, 27 Jun 2018 20:53:30 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from mail.baldwin.cx (bigwig.baldwin.cx [96.47.65.170]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EB99A7276B; Wed, 27 Jun 2018 20:53:29 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from John-Baldwins-MacBook-Pro-2.local (ralph.baldwin.cx [66.234.199.215]) by mail.baldwin.cx (Postfix) with ESMTPSA id F07EC10AFD2; Wed, 27 Jun 2018 16:53:22 -0400 (EDT) Subject: Re: svn commit: r335733 - in head: bin/csh gnu/usr.bin/cc/cc1 gnu/usr.bin/cc/cc1plus gnu/usr.bin/cc/cc_tools lib/libmagic lib/libpam/static_libpam lib/ncurses/ncurses share/syscons/scrnmaps stand/mips/... To: Bryan Drewery , Dimitry Andric References: <201806271929.w5RJTGwa049250@repo.freebsd.org> <1903115A-F018-4075-961A-65689595FBEE@FreeBSD.org> <0d1b366a-59ab-65e9-58a6-5474f538cad2@FreeBSD.org> Cc: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org From: John Baldwin Message-ID: Date: Wed, 27 Jun 2018 13:53:20 -0700 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:52.0) Gecko/20100101 Thunderbird/52.8.0 MIME-Version: 1.0 In-Reply-To: <0d1b366a-59ab-65e9-58a6-5474f538cad2@FreeBSD.org> Content-Type: text/plain; charset=windows-1252 Content-Language: en-US Content-Transfer-Encoding: 7bit X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.4.3 (mail.baldwin.cx); Wed, 27 Jun 2018 16:53:23 -0400 (EDT) X-Virus-Scanned: clamav-milter 0.99.2 at mail.baldwin.cx X-Virus-Status: Clean X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.26 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, 27 Jun 2018 20:53:30 -0000 On 6/27/18 12:45 PM, Bryan Drewery wrote: > On 6/27/2018 12:35 PM, Dimitry Andric wrote: >> On 27 Jun 2018, at 21:29, Bryan Drewery wrote: >>> >>> Author: bdrewery >>> Date: Wed Jun 27 19:29:15 2018 >>> New Revision: 335733 >>> URL: https://svnweb.freebsd.org/changeset/base/335733 >>> >>> Log: >>> Don't use CCACHE for linking. >>> >>> MFC after: 2 weeks >>> Sponsored by: Dell EMC >>> >>> Modified: >>> head/bin/csh/Makefile >>> head/gnu/usr.bin/cc/cc1/Makefile >>> head/gnu/usr.bin/cc/cc1plus/Makefile >>> head/gnu/usr.bin/cc/cc_tools/Makefile >>> head/lib/libmagic/Makefile >>> head/lib/libpam/static_libpam/Makefile >>> head/lib/ncurses/ncurses/Makefile >>> head/share/syscons/scrnmaps/Makefile >>> head/stand/mips/beri/boot2/Makefile >>> head/usr.bin/vi/catalog/Makefile >>> >>> Modified: head/bin/csh/Makefile >>> ============================================================================== >>> --- head/bin/csh/Makefile Wed Jun 27 19:28:37 2018 (r335732) >>> +++ head/bin/csh/Makefile Wed Jun 27 19:29:15 2018 (r335733) >>> @@ -113,7 +113,7 @@ build-tools: gethost >>> >>> gethost: gethost.c sh.err.h tc.const.h sh.h ${BUILD_TOOLS_META} >>> @rm -f ${.TARGET} >>> - ${CC} -o gethost ${LDFLAGS} ${CFLAGS:C/-DHAVE_ICONV//} \ >>> + ${CC:N${CCACHE_BIN}} -o gethost ${LDFLAGS} ${CFLAGS:C/-DHAVE_ICONV//} \ >>> ${TCSHDIR}/gethost.c >> >> Looks like a good candidate for a common macro, say CC_NOCACHE, CC_REAL >> or something like that? :) > > Yeah probably. I'd paint it CC_LINK. CCLD was my initial thought *duck* -- John Baldwin