From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 2737533C8 for ; Fri, 20 Jan 2023 16:59:12 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id F0B24C4339B; Fri, 20 Jan 2023 16:59:09 +0000 (UTC) From: Catalin Marinas To: Will Deacon , Shuah Khan , Nathan Chancellor , Nick Desaulniers , Tom Rix , Mark Brown Cc: linux-arm-kernel@lists.infradead.org, linux-kselftest@vger.kernel.org, llvm@lists.linux.dev Subject: Re: [PATCH 0/6] kselftest/arm64: Build fixes for clang Date: Fri, 20 Jan 2023 16:59:07 +0000 Message-Id: <167423393396.2326323.15344511841886361523.b4-ty@arm.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230111-arm64-kselftest-clang-v1-0-89c69d377727@kernel.org> References: <20230111-arm64-kselftest-clang-v1-0-89c69d377727@kernel.org> Precedence: bulk X-Mailing-List: llvm@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 8bit On Thu, 12 Jan 2023 19:51:47 +0000, Mark Brown wrote: > This series provides a few small build fixes and Makefile tweaks which > allow us to build the arm64 selftests using clang as well as GCC. I > also fixed one minor issue I noticed in the MTE Makefile while doing the > updates there. > > Applied to arm64 (for-next/kselftest), thanks! [1/6] kselftest/arm64: Fix .pushsection for strings in FP tests https://git.kernel.org/arm64/c/aa58ace3499a [2/6] kselftest/arm64: Remove redundant _start labels from FP tests https://git.kernel.org/arm64/c/cd57a6584fe5 [3/6] kselftest/arm64: Don't pass headers to the compiler as source https://git.kernel.org/arm64/c/a884f7970e57 [4/6] kselftest/arm64: Initialise current at build time in signal tests https://git.kernel.org/arm64/c/6e4b4f0eca88 [5/6] kselftest/arm64: Support build of MTE tests with clang https://git.kernel.org/arm64/c/343d59119e77 [6/6] kselftest/arm64: Remove spurious comment from MTE test Makefile https://git.kernel.org/arm64/c/89d72c035f88 -- Catalin 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 Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 49E2AC25B4E for ; Fri, 20 Jan 2023 17:00:29 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:References:In-Reply-To: Message-Id:Date:Subject:Cc:To:From:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=Hf7rSOoZmQoTGesaEYbzRzaPOEjrcYo++SoQse21Xnc=; b=QlOMJwxbH/0Jp9 B8+slBI5yVxYpUEQmeNUlYEnn2Kt7o+rORXPCTHVeh222OuBzQ2wcPsHHH/hQzdhUTgOqTug2wYsl hLz/SD9EiIYPwJM48QjNQegE3ETG0guM+CtTdhX4DTvXfMtZBw8IodWN+wvn6QtlC+N38Wr7iglMd L99Obp5DgAtZU8+mgdnyCgalrOmqwqMQ56IyJewSYg9IqjcUajDoFgC51Vy5EhLc1rvX8JLABdUKe szgnY1RuIqPSiRPndZXobrrT1uk41V0ADxHcJi5Y8DKUnfDhh5lBQ6Adf0IAuW0RoE/F/EgqbHN+7 fUgcXEhcsGAn8XXwZ6nA==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1pIujf-00BLzN-W6; Fri, 20 Jan 2023 16:59:28 +0000 Received: from dfw.source.kernel.org ([139.178.84.217]) by bombadil.infradead.org with esmtps (Exim 4.94.2 #2 (Red Hat Linux)) id 1pIujR-00BLuH-Vu for linux-arm-kernel@lists.infradead.org; Fri, 20 Jan 2023 16:59:15 +0000 Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 9119362017; Fri, 20 Jan 2023 16:59:13 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id F0B24C4339B; Fri, 20 Jan 2023 16:59:09 +0000 (UTC) From: Catalin Marinas To: Will Deacon , Shuah Khan , Nathan Chancellor , Nick Desaulniers , Tom Rix , Mark Brown Cc: linux-arm-kernel@lists.infradead.org, linux-kselftest@vger.kernel.org, llvm@lists.linux.dev Subject: Re: [PATCH 0/6] kselftest/arm64: Build fixes for clang Date: Fri, 20 Jan 2023 16:59:07 +0000 Message-Id: <167423393396.2326323.15344511841886361523.b4-ty@arm.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230111-arm64-kselftest-clang-v1-0-89c69d377727@kernel.org> References: <20230111-arm64-kselftest-clang-v1-0-89c69d377727@kernel.org> MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20230120_085914_111990_28AAFAE4 X-CRM114-Status: GOOD ( 11.50 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org On Thu, 12 Jan 2023 19:51:47 +0000, Mark Brown wrote: > This series provides a few small build fixes and Makefile tweaks which > allow us to build the arm64 selftests using clang as well as GCC. I > also fixed one minor issue I noticed in the MTE Makefile while doing the > updates there. > > Applied to arm64 (for-next/kselftest), thanks! [1/6] kselftest/arm64: Fix .pushsection for strings in FP tests https://git.kernel.org/arm64/c/aa58ace3499a [2/6] kselftest/arm64: Remove redundant _start labels from FP tests https://git.kernel.org/arm64/c/cd57a6584fe5 [3/6] kselftest/arm64: Don't pass headers to the compiler as source https://git.kernel.org/arm64/c/a884f7970e57 [4/6] kselftest/arm64: Initialise current at build time in signal tests https://git.kernel.org/arm64/c/6e4b4f0eca88 [5/6] kselftest/arm64: Support build of MTE tests with clang https://git.kernel.org/arm64/c/343d59119e77 [6/6] kselftest/arm64: Remove spurious comment from MTE test Makefile https://git.kernel.org/arm64/c/89d72c035f88 -- Catalin _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel