From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.3 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,SPF_HELO_NONE, SPF_PASS,URIBL_BLOCKED autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 114BCC433E6 for ; Thu, 4 Feb 2021 18:14:45 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id D465164F58 for ; Thu, 4 Feb 2021 18:14:44 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S238809AbhBDSO0 (ORCPT ); Thu, 4 Feb 2021 13:14:26 -0500 Received: from mail.kernel.org ([198.145.29.99]:41410 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S238914AbhBDSMf (ORCPT ); Thu, 4 Feb 2021 13:12:35 -0500 Received: by mail.kernel.org (Postfix) with ESMTPSA id B981B64E27; Thu, 4 Feb 2021 18:12:18 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1612462339; bh=x8hI02Op/2ti8scBYxHtyyHU2C3voD9ZrVdcRQhFOk0=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=GFniNQHRCPa11vLLhb2Z0q2vkyoAACvcuprHkIRrM9sZp2Ai0n1ABY8Ch9ZOK2W3L X6pWHEw6Udi2kuYl1SDc9ff13WAn8hygMv8t3xUpkjglotx5POYECt7URsOeLYEJeX qPNViy2UFMAke5BMLtIdUoByPf0tzESO7xLrtMTEtL2veMln+86qQHHyHVAZWsWorY IEt/CEPAEjXIMXhdCtZol0JrtyHS/V93BqOCnHwVaGY0V2jmysk73mFPTHqIJf5Onz Ui184gXo+kHwSL3HnWiTjQ5xXZyZDoInQR7oitu7DnWG/o0bnVEtDr+SZLAVwnXxTA VW6JOE+Jb/KSQ== Date: Thu, 4 Feb 2021 11:12:16 -0700 From: Nathan Chancellor To: Nick Desaulniers Cc: Ard Biesheuvel , Guillaume Tucker , Russell King - ARM Linux admin , Geert Uytterhoeven , Linux Kernel Mailing List , Linus Walleij , Linux ARM , Nicolas Pitre , "kernelci-results@groups.io" , clang-built-linux Subject: Re: next/master bisection: baseline.login on rk3288-rock2-square Message-ID: <20210204181216.GB2989696@localhost> References: <6c65bcef-d4e7-25fa-43cf-2c435bb61bb9@collabora.com> <20210204100601.GT1463@shell.armlinux.org.uk> <46373679-a149-8a3d-e914-780e4c6ff8be@collabora.com> <7c685184-8688-9319-075b-66133cb0b0c3@collabora.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, Feb 04, 2021 at 10:06:08AM -0800, 'Nick Desaulniers' via Clang Built Linux wrote: > On Thu, Feb 4, 2021 at 8:02 AM Ard Biesheuvel wrote: > > > > On Thu, 4 Feb 2021 at 16:53, Guillaume Tucker > > wrote: > > > > > > On 04/02/2021 15:42, Ard Biesheuvel wrote: > > > > On Thu, 4 Feb 2021 at 12:32, Guillaume Tucker > > > > wrote: > > > >> > > > >> Essentially: > > > >> > > > >> make -j18 ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- LLVM=1 CC="ccache clang" zImage > > This command should link with BFD (and assemble with GAS; it's only > using clang as the compiler. I think you missed the 'LLVM=1' before CC="ccache clang". That should use all of the LLVM utilities minus the integrated assembler while wrapping clang with ccache. Cheers, Nathan