From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 16C8842EC5; Thu, 20 Jul 2023 12:57:04 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id C4C4040F17; Thu, 20 Jul 2023 12:57:03 +0200 (CEST) Received: from mail-vk1-f174.google.com (mail-vk1-f174.google.com [209.85.221.174]) by mails.dpdk.org (Postfix) with ESMTP id F2EFE40DF5; Thu, 20 Jul 2023 12:57:02 +0200 (CEST) Received: by mail-vk1-f174.google.com with SMTP id 71dfb90a1353d-4813bc037eeso280916e0c.1; Thu, 20 Jul 2023 03:57:02 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20221208; t=1689850622; x=1690455422; h=content-transfer-encoding:cc:to:subject:message-id:date:from :in-reply-to:references:mime-version:from:to:cc:subject:date :message-id:reply-to; bh=opfPwSTYPfvy3JUVMcikELS99CwwumaN4gSYfReoPFE=; b=li3bRoRnPP5TSWL/r3yeWcUf7wtV2oR/C6UOYdNEbG3GWEFaNyeB72GQBTOFS1ldq5 3lQx/62YwQXQCvdGyrK7lT8WEbTtHsJKnI1xHmMeTePbXLBLCLtaRJy8dChYijl6uxzp lUIDR5+rnALBSzCdkm2zsNOz6BlGbexmFwQQUw8Uyx2SSuXf/CDMoPx2MBh7CE5fhADE srM5jRDItF+qYiLf3ruU248hMZJhrNeuqWr5jMtwMUn2mg7B39y93TXwQzxqqrJQRsxR 4yJ/yUzKE9KoLWtKMto30LJ3rdmK0N60+ru+3XVhK7jyMKu70coFbnkuZ/pVxbuhwQhJ B6Hg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20221208; t=1689850622; x=1690455422; h=content-transfer-encoding:cc:to:subject:message-id:date:from :in-reply-to:references:mime-version:x-gm-message-state:from:to:cc :subject:date:message-id:reply-to; bh=opfPwSTYPfvy3JUVMcikELS99CwwumaN4gSYfReoPFE=; b=AUxMC2roSrUyxEFDoAH1wW1pmWuV3SqRaAOwry7R80ZRV4Dp7LtQvkFUbM+6ckE5dg DVFgOACg4e3221jbvQBEvT3NvyBKbDcTp/UDRbgYC4MRsxk4821SoLKnSP0k/PGstxji +eqH+tA65LiAU4dsuHWJlIywR6U+ljI1/p/DfvEQtBseciV8SrCTyI7bjfSIaOAUNjbL iyAxPmAu7U0CkA3EDI7zJJch2znUABRJCEXDN9kYjJ5g6hIBDoBHufCE3u6StIWbMpzQ Jy371eDwlE6t+IKAaW8v8Ny1rtvJhbJYbakvbYVe/zHwOpGZRcPfmmqjhS8PTRsjPLVP 7A1A== X-Gm-Message-State: ABy/qLYqAx80q1kIy6Ugf9SAqh574OY+ThVmMcjtagfEEc81nSvH/Fhr uYViRnb+bR0/YZsiLIkYypH7rkLCbYSgi75+aTc= X-Google-Smtp-Source: APBJJlH5nodkfOEd7IcugLWM0hgfZYSZ0Ne2O+O/txzkGBRw+lfxVhi0RGkU0FU1v8MuMZP60ic+0Vzx9q8x1xemTNA= X-Received: by 2002:a1f:5c4f:0:b0:481:4ab8:2464 with SMTP id q76-20020a1f5c4f000000b004814ab82464mr5363566vkb.5.1689850622193; Thu, 20 Jul 2023 03:57:02 -0700 (PDT) MIME-Version: 1.0 References: <20230503151413.14915-1-bruce.richardson@intel.com> <20230517173400.22858-1-bruce.richardson@intel.com> In-Reply-To: From: Jerin Jacob Date: Thu, 20 Jul 2023 16:26:36 +0530 Message-ID: Subject: Re: [PATCH v3] build: announce requirement for C11 To: Bruce Richardson Cc: dev@dpdk.org, techboard@dpdk.org, Tyler Retzlaff Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org On Thu, Jul 20, 2023 at 1:52=E2=80=AFPM Bruce Richardson wrote: > > On Wed, May 17, 2023 at 06:34:00PM +0100, Bruce Richardson wrote: > > Add a deprecation notice informing users that we will require a C11 > > compiler from 23.11 release onwards. This requirement was agreed by > > technical board to enable use of newer C language features, e.g. > > standard atomics. [1] > > > > [1] http://inbox.dpdk.org/dev/DBAPR08MB58148CEC3E1454E8848A938998AB9@DB= APR08MB5814.eurprd08.prod.outlook.com/ > > > > Signed-off-by: Bruce Richardson > > Acked-by: Tyler Retzlaff > > > > --- > > > > V3: > > - add additional detail following discussion on-list > > > > V2: > > - add requirement for stdatomics > > - fix sphinx formatting > > --- > > doc/guides/rel_notes/deprecation.rst | 18 ++++++++++++++++++ > > 1 file changed, 18 insertions(+) > > > Ping for additional review/acks and merge. Acked-by: Jerin Jacob > > This deprecation notice really needs to go into 23.07 to allow the C11 > requirement to be met in 23.11! > > Thanks, > /Bruce