From patchwork Wed Jan 31 17:45:52 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: David Marchand X-Patchwork-Id: 136238 X-Patchwork-Delegate: david.marchand@redhat.com Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 6D39943A22; Wed, 31 Jan 2024 18:46:07 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 4E0A942DAC; Wed, 31 Jan 2024 18:46:04 +0100 (CET) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) by mails.dpdk.org (Postfix) with ESMTP id A878042DA6 for ; Wed, 31 Jan 2024 18:46:03 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1706723163; 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: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=PDlja3fQpYJXLDeBN8qqNIiUKufxIwtVgMnHH8efCjo=; b=D/ZXbvFYIQ9fQLGas2slUrTDaTsYcn9pA6RqjosFiG82eBGjXjGh2eAZjyTz68bWsLXkFH 2idAsKkpcynsXfQnMldcoTTbBr9ESZkivtMuhgU8n6HKeU5UPZ47OzH6K7J9/yLzQNEzdu IKL+C+3TKxn2tdBiTURZRSiCsm7g8cg= Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.3, cipher=TLS_AES_256_GCM_SHA384) id us-mta-619-w-okgr-CMqqJ_8nJ4TZ0Mw-1; Wed, 31 Jan 2024 12:46:00 -0500 X-MC-Unique: w-okgr-CMqqJ_8nJ4TZ0Mw-1 Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.rdu2.redhat.com [10.11.54.2]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 8667983B870; Wed, 31 Jan 2024 17:45:59 +0000 (UTC) Received: from dmarchan.redhat.com (unknown [10.45.224.95]) by smtp.corp.redhat.com (Postfix) with ESMTP id 7CAF840D1B67; Wed, 31 Jan 2024 17:45:58 +0000 (UTC) From: David Marchand To: dev@dpdk.org Cc: stable@dpdk.org, Sunil Kumar Kori , Rakesh Kudurumalla , Nithin Dabilpuram Subject: [PATCH 2/2] app/graph: fix build reason Date: Wed, 31 Jan 2024 18:45:52 +0100 Message-ID: <20240131174552.2601531-2-david.marchand@redhat.com> In-Reply-To: <20240131174552.2601531-1-david.marchand@redhat.com> References: <20240131174552.2601531-1-david.marchand@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.4.1 on 10.11.54.2 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com 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 When a component is disabled, the reason meson variable must be set to provide an explanation why. Since epoll is a Linux thing, report that the graph application is only supported on Linux. Fixes: 5b21ffb23308 ("app/graph: add CLI framework") Cc: stable@dpdk.org Signed-off-by: David Marchand Acked-by: Tyler Retzlaff Acked-by: Chengwen Feng --- app/graph/meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/app/graph/meson.build b/app/graph/meson.build index 5b0f966d99..8aefdf505c 100644 --- a/app/graph/meson.build +++ b/app/graph/meson.build @@ -5,6 +5,7 @@ name = 'graph' build = cc.has_header('sys/epoll.h') if not build + reason = 'only supported on Linux' subdir_done() endif