From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on gnuweeb.org X-Spam-Level: X-Spam-Status: No, score=-0.8 required=5.0 tests=ALL_TRUSTED,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,NO_DNS_FOR_FROM,URIBL_BLOCKED autolearn=no autolearn_force=no version=3.4.6 Received: from localhost.localdomain (unknown [182.253.183.184]) by gnuweeb.org (Postfix) with ESMTPSA id CA16B7E3C3; Thu, 12 Jan 2023 15:57:22 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gnuweeb.org; s=default; t=1673539045; bh=D7CklgKgJs2Oydmin9qwbjCd+vetbLK0Jx9DpaoIbvU=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=lL6Ofjip9z8ukFTSnfNprKPB1bG5VNc3JH8auXBNUeK5vrVAo7RL3+EaiokXOVMYC puh+vzx4+DQoMl/FWAhsW+eNLUPXt63zAof3s78dXNpPRMvxF0ZsJWDybEWTdmIo1/ dsPnMYt+YC2nQ3ahcWAqjrUGWO6yrvctt8E7+aOxwJ0cFeMsD5k3QnMdN8mIgEOKu7 1leRG5h+KX2wl+PPJCIis38dWh11GjpWWJv08myZ/SqG+vkLrgfDHB2+vfY+/nN5WJ hzn00vEb+qEoTFGVrdDBB+i5i4gkfpQmVhCrjBIdXma2e9ZGMV7DNhZMEjA5sFFGP4 YDANF6ThXn3YQ== From: Ammar Faizi To: Jens Axboe Cc: Ammar Faizi , Pavel Begunkov , Breno Leitao , Christian Mazakas , Gilang Fachrezy , VNLX Kernel Department , io-uring Mailing List , Linux Kernel Mailing List , GNU/Weeb Mailing List Subject: [PATCH liburing v1 2/4] CHANGELOG: Note about --nolibc configure option deprecation Date: Thu, 12 Jan 2023 22:57:07 +0700 Message-Id: <20230112155709.303615-3-ammar.faizi@intel.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230112155709.303615-1-ammar.faizi@intel.com> References: <20230112155709.303615-1-ammar.faizi@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: From: Ammar Faizi Since commit bfb432f4cce5 ("configure: Always enable `CONFIG_NOLIBC` if the arch is supported"), the --nolibc configure option is deprecated and has no effect. Plus, building liburing on x86-64, x86, and aarch64 always enables CONFIG_NOLIBC. Note these changes in the CHANGELOG file. Signed-off-by: Ammar Faizi --- CHANGELOG | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG b/CHANGELOG index 93c500f..0722aae 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -4,6 +4,8 @@ liburing-2.4 release - Add IO_URING_{MAJOR,MINOR,CHECK}_VERSION() macros. - FFI support (for non-C/C++ languages integration). - Add io_uring_prep_msg_ring_cqe_flags() function. +- Deprecate --nolibc configure option. +- CONFIG_NOLIBC is always enabled on x86-64, x86, and aarch64. liburing-2.3 release -- Ammar Faizi