From nobody Mon Feb 9 23:38:21 2026 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 vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 23E9BC7EE43 for ; Mon, 12 Jun 2023 20:49:13 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S238127AbjFLUtL (ORCPT ); Mon, 12 Jun 2023 16:49:11 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:35888 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S235028AbjFLUrf (ORCPT ); Mon, 12 Jun 2023 16:47:35 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id B1E9E1FE0 for ; Mon, 12 Jun 2023 13:46:42 -0700 (PDT) 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 A5D2D62F0C for ; Mon, 12 Jun 2023 20:45:17 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 155F6C4331D; Mon, 12 Jun 2023 20:45:17 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1686602717; bh=gUcb6xxKECKBFd/6RrJssqZdkk+hQheiI8GLvg8JYiM=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=H0l6AqtOGHF0a1f6kc2WjhvUoZDmzs9x4t6FUnGRMy/hJj7F0i/T9ht6bsJzUByR2 3wHFaIry48mj1NL1QU0cQWu7t8j7fAA6EGG6XomAO1UgKCm7IkeUAzqIa1cdHlyhpT S+GQcQDCPZYyOkhNMmRPYTD3WC9Ndd5JhjoE7GYvzw5Y1TE4rhIW69H1QJ0RvuwSbw 1pjL1Hyxlvd0qSlO1KcN/6oE3H1yorCuipKjXlCdj3HRJbuZILl5h0JWgMg1YMkjfD juODaxffU2TKdSEdiiV5mCbrw6R1Kv6AtMDr63Gged8vbzcw9PSsRUa5q/D+3CmB/x PdFlxh+d+JF5w== Received: by paulmck-ThinkPad-P17-Gen-1.home (Postfix, from userid 1000) id EAD18CE3A78; Mon, 12 Jun 2023 13:45:15 -0700 (PDT) From: "Paul E. McKenney" To: linux-kernel@vger.kernel.org Cc: gwml@vger.gnuweeb.org, kernel-team@meta.com, w@lwt.eu, =?UTF-8?q?Thomas=20Wei=C3=9Fschuh?= , Willy Tarreau , "Paul E . McKenney" Subject: [PATCH v2 nolibc 29/53] tools/nolibc: reformat list of headers to be installed Date: Mon, 12 Jun 2023 13:44:50 -0700 Message-Id: <20230612204514.292087-29-paulmck@kernel.org> X-Mailer: git-send-email 2.40.1 In-Reply-To: <8b757cc0-3719-4e63-a755-9710384137bc@paulmck-laptop> References: <8b757cc0-3719-4e63-a755-9710384137bc@paulmck-laptop> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Thomas Wei=C3=9Fschuh This makes it easier to add and remove more entries in the future without creating spurious diff hunks. Signed-off-by: Thomas Wei=C3=9Fschuh Signed-off-by: Willy Tarreau Signed-off-by: Paul E. McKenney --- tools/include/nolibc/Makefile | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/tools/include/nolibc/Makefile b/tools/include/nolibc/Makefile index 9839feafd38a..e37c3ac86e23 100644 --- a/tools/include/nolibc/Makefile +++ b/tools/include/nolibc/Makefile @@ -25,8 +25,22 @@ endif =20 nolibc_arch :=3D $(patsubst arm64,aarch64,$(ARCH)) arch_file :=3D arch-$(nolibc_arch).h -all_files :=3D ctype.h errno.h nolibc.h signal.h stackprotector.h std.h st= dint.h \ - stdio.h stdlib.h string.h sys.h time.h types.h unistd.h +all_files :=3D \ + ctype.h \ + errno.h \ + nolibc.h \ + signal.h \ + stackprotector.h \ + std.h \ + stdint.h \ + stdlib.h \ + string.h \ + sys.h \ + time.h \ + types.h \ + unistd.h \ + stdio.h \ + =20 # install all headers needed to support a bare-metal compiler all: headers --=20 2.40.1