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 4965D42677; Fri, 29 Sep 2023 22:20:40 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 10D9740296; Fri, 29 Sep 2023 22:20:40 +0200 (CEST) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by mails.dpdk.org (Postfix) with ESMTP id 1A2CD40273 for ; Fri, 29 Sep 2023 22:20:39 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1696018838; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=gYTHu6JgGpFYZwoT7faBMpj3Hod/phICyb27h+ph84c=; b=dWtTif6slvVfu/7P89hy7fqtizoVk0ZNHPvhVwOY2LyhenVEIu6GdiXuGoTPA4hG71Gv6A rBTKmGIcBkh6QkRfBxqvi/hfWxpFtMuodusAVoQNvJFozvGWzDjFI8WgmHpB9GuX72+ApY r9lMW77B9z0hk4T2YN2ds4EUczH9a1Y= Received: from mimecast-mx02.redhat.com (mx-ext.redhat.com [66.187.233.73]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-106-AcoRt0j-NRiZ-MTApAbMKA-1; Fri, 29 Sep 2023 16:20:35 -0400 X-MC-Unique: AcoRt0j-NRiZ-MTApAbMKA-1 Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.rdu2.redhat.com [10.11.54.1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 16B583C0E44D; Fri, 29 Sep 2023 20:20:35 +0000 (UTC) Received: from RHTPC1VM0NT (unknown [10.22.10.68]) by smtp.corp.redhat.com (Postfix) with ESMTPS id AB63C40C2064; Fri, 29 Sep 2023 20:20:34 +0000 (UTC) From: Aaron Conole To: David Marchand Cc: dev@dpdk.org, thomas@monjalon.net, Michael Santana , Bruce Richardson Subject: Re: [PATCH] ci: test stdatomic API References: <20230929141510.3114938-1-david.marchand@redhat.com> Date: Fri, 29 Sep 2023 16:20:34 -0400 In-Reply-To: <20230929141510.3114938-1-david.marchand@redhat.com> (David Marchand's message of "Fri, 29 Sep 2023 16:15:10 +0200") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux) MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.1 on 10.11.54.1 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain 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 David Marchand writes: > Add some compilation tests with C11 atomics enabled. > The headers check can't be enabled (as gcc and clang don't provide > stdatomic before C++23). > > Signed-off-by: David Marchand > --- Reviewed-by: Aaron Conole