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 EABFAA0C43; Wed, 20 Oct 2021 23:42:51 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id DA11C41136; Wed, 20 Oct 2021 23:42:44 +0200 (CEST) Received: from mail-pj1-f51.google.com (mail-pj1-f51.google.com [209.85.216.51]) by mails.dpdk.org (Postfix) with ESMTP id 1DEDE40142 for ; Wed, 20 Oct 2021 23:42:42 +0200 (CEST) Received: by mail-pj1-f51.google.com with SMTP id ls18so3408717pjb.3 for ; Wed, 20 Oct 2021 14:42:42 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=networkplumber-org.20210112.gappssmtp.com; s=20210112; h=from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=uLNNo5ozsT7RoRtWpmIx4ZgP6IlMGj1JbCgysmS9rp8=; b=JuwtPqZJDx/5lqAQ5MyzdHMG+HsTjdusryGWIpHj54SlZaWCosStntjKC8rpPs3BFV 1NIMaPVIpmwnROTkTQedGCet/KTCWnhq4yPRSTzBuMsyZdubipuGEi9zlsWEvKI58Tdh +WQS9m7dWGKa5V9VcrXUNyBBxyIGddF3EABTluIW+W7WxOOFSigEMPQkFmiM/djniYqP kT2+yzOIgl+TL6824CV7B81k7C/r1hMQ/eEkspa3NNbfOlMqwRXETrLHNbKp6TCa1ItS 3UD1c/4BI92xmwF0MppRSsetL2tvy6IRVXXrlLSIiEu51rjZa/nNWNah9Z0Lj6HMJxvc ho9Q== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=uLNNo5ozsT7RoRtWpmIx4ZgP6IlMGj1JbCgysmS9rp8=; b=34yESFc6LPdHplfvKjhO8HjfbTwj/CPw4h/gZQzIuqUOkdZzk1HRc/hX0m7hSZrh37 2NFvlgt98VdwYftGfSrOnunFI0CcqWcKrP90UtML6MUT5Jxi+5iQPjMuCFGTkWfIqqSN RXvyWLTQKbo0QcerbWwznFxVeCXtElPo7nxIakgQFBx/bgDkwuXgAoH/xKLQDgl+EofW q9l/BtQY5YjikWFcVzF9yEuawunxwfzoulslw7abzZn+TjCNu1qEYcYFymHljQPyqI4u pYLRUeE9A95S+8+NorRcFm2CrKsIFQHEKU2M832cSVqbWnozTLqRSDkXl1A9PGqVhunt tvSQ== X-Gm-Message-State: AOAM530p1vmyX376SKlz4kWc0sc06PsTK8nKz2V5v01ZuXnoeNPkSBYP ITn6s6V5WvBXdzZTz4dSICWvJBE7XmbaFw== X-Google-Smtp-Source: ABdhPJyWaISfwKiCJkwy/JPTCCxE+KtCIuTfx4pAkfzcAS4/U5O1O+YWrrEhVRJ9J5aFBfc6mP5hew== X-Received: by 2002:a17:90b:20d2:: with SMTP id ju18mr1740879pjb.66.1634766160972; Wed, 20 Oct 2021 14:42:40 -0700 (PDT) Received: from hermes.local (204-195-33-123.wavecable.com. [204.195.33.123]) by smtp.gmail.com with ESMTPSA id d20sm3304480pfl.82.2021.10.20.14.42.39 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 20 Oct 2021 14:42:40 -0700 (PDT) From: Stephen Hemminger To: dev@dpdk.org Cc: Stephen Hemminger , Dmitry Kozlyuk , Narcisa Ana Maria Vasile , Dmitry Malloy , Pallavi Kadam Date: Wed, 20 Oct 2021 14:42:25 -0700 Message-Id: <20211020214236.71444-2-stephen@networkplumber.org> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20211020214236.71444-1-stephen@networkplumber.org> References: <20210903004732.109023-1-stephen@networkplumber.org> <20211020214236.71444-1-stephen@networkplumber.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-dev] [PATCH v15 01/12] lib: pdump is not supported on Windows 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 Sender: "dev" The current version of the pdump library was building on Windows, but it was useless since the pdump utility was not being built and Windows does not have multi-process support. The new version of pdump with filtering now has dependency on bpf. But bpf library is not available on Windows. Signed-off-by: Stephen Hemminger Acked-by: Dmitry Kozlyuk Cc: Dmitry Kozlyuk Cc: Narcisa Ana Maria Vasile Cc: Dmitry Malloy Cc: Pallavi Kadam --- lib/meson.build | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/meson.build b/lib/meson.build index 3b8b0998208a..5aa1be5134ed 100644 --- a/lib/meson.build +++ b/lib/meson.build @@ -86,7 +86,6 @@ if is_windows 'gro', 'gso', 'latencystats', - 'pdump', 'stack', 'security', ] # only supported libraries for windows -- 2.30.2