From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 45D2DA0528; Sat, 18 Jul 2020 00:16:14 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 833111BEDF; Sat, 18 Jul 2020 00:16:13 +0200 (CEST) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by dpdk.org (Postfix) with ESMTP id 1EEBE1BED7 for ; Sat, 18 Jul 2020 00:16:12 +0200 (CEST) Received: by linux.microsoft.com (Postfix, from userid 1059) id 2476D20B4909; Fri, 17 Jul 2020 15:16:11 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 2476D20B4909 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1595024171; bh=n1SCkxVQlBIm2EqRAXrIp6TRaaXVs8t/KRjM3uJnlVE=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=S1NvcL/gULkSwrrLlBuyFv50ST85ADJ65M6Ey0VH2+ZOaBaaofiPa04hW+Dal3e9U PlqRw58Y2gSz/tWHzBE0XcLQ3ZXJHe86dKluSLcJm70XMw8dHDeGRHedHHm5eA1rin n1bKu4Lg6ys7V7L+BkJxhWfDI/SFKgHUkitfqPW0= Date: Fri, 17 Jul 2020 15:16:11 -0700 From: Narcisa Ana Maria Vasile To: Dmitry Kozlyuk Cc: dev@dpdk.org, Dmitry Malloy , Narcisa Ana Maria Vasile , Fady Bader , Tal Shnaiderman , Omar Cardona Message-ID: <20200717221611.GA34951@linuxonhyperv3.guj3yctzbm1etfxqx2vob5hsef.xx.internal.cloudapp.net> References: <20200620210511.13134-1-dmitry.kozliuk@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200620210511.13134-1-dmitry.kozliuk@gmail.com> User-Agent: Mutt/1.5.21 (2010-09-15) Subject: Re: [dpdk-dev] [PATCH 0/7] cmdline: support Windows X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 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" On Sun, Jun 21, 2020 at 12:05:03AM +0300, Dmitry Kozlyuk wrote: > This patchset enables librte_cmdline on Windows. To do that, it creates > a number of wrappers for OS-dependent terminal handling and I/O. > Considered alternative was to revive [1] and use libedit (Unix-only) > for terminal handling. However, testing revealed that WinEditLine [2] > is not a drop-in replacement for libedit, so this solution wouldn't be > universal. > > Note: not all dependency series are up-to-date at the time of > submission, so this version may require hacking to test. > > [1]: http://patchwork.dpdk.org/patch/38561 > [2]: http://mingweditline.sourceforge.net > > --- > Depends-on: series-10512 ("Windows bus/pci support ") > Depends-on: series-10244 ("[v4] eal/windows: ring build on Windows") > Depends-on: series-10282 ("build mempool on Windows ") > Depends-on: series-10382 ("compile librte_net for windows") > Tested-by: Narcisa Vasile Compiled with mingw and tested using the sample cmdline app. With clang (9.0.0), I'm getting the "conflicting types for '_m_prefetchw'" error, given the dependency on librte_net patch.