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 vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id E8F1FC54EBC for ; Thu, 12 Jan 2023 16:06:25 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233842AbjALQGX (ORCPT ); Thu, 12 Jan 2023 11:06:23 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:47800 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232398AbjALQF7 (ORCPT ); Thu, 12 Jan 2023 11:05:59 -0500 Received: from gnuweeb.org (gnuweeb.org [51.81.211.47]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 2E08E5F51; Thu, 12 Jan 2023 07:57:26 -0800 (PST) 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) X-GW-Data: lPqxHiMPbJw1wb7CM9QUryAGzr0yq5atzVDdxTR0iA== 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 Precedence: bulk List-ID: X-Mailing-List: io-uring@vger.kernel.org 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