Re: [dpdk-dev] [PATCH v7 9/9] eal: add minimum viable code to support parsing

2020-02-07 Thread Ranjit Menon
On 2/7/2020 8:46 AM, Ranjit Menon wrote: On 2/6/2020 1:26 AM, Thomas Monjalon wrote: > As discussed in community meeting, the goal was to have core parsing > in Windows EAL 20.02. > Given that there is a crash and a doubt on the imported getopt library, > I think it's better to postpone this seri

Re: [dpdk-dev] [PATCH v7 9/9] eal: add minimum viable code to support parsing

2020-02-07 Thread Ranjit Menon
On 2/6/2020 1:26 AM, Thomas Monjalon wrote: As discussed in community meeting, the goal was to have core parsing in Windows EAL 20.02. Given that there is a crash and a doubt on the imported getopt library, I think it's better to postpone this series to 20.05. Thomas... We have fixed the cras

Re: [dpdk-dev] [PATCH v7 9/9] eal: add minimum viable code to support parsing

2020-02-06 Thread Pallavi Kadam
Hi Dmitry, On 2/5/2020 10:41 PM, Dmitry Kozlyuk wrote: On 2/5/2020 4:39 PM, Pallavi Kadam wrote: On 2/5/2020 11:54 AM, Dmitry Kozlyuk wrote: Crashes at argument parsing, WinDbg log attached. This patch works fine with meson=0.49. I was able to execute the 'helloworld' app. When I tried to

Re: [dpdk-dev] [PATCH v7 9/9] eal: add minimum viable code to support parsing

2020-02-06 Thread Thomas Monjalon
As discussed in community meeting, the goal was to have core parsing in Windows EAL 20.02. Given that there is a crash and a doubt on the imported getopt library, I think it's better to postpone this series to 20.05. 06/02/2020 07:41, Dmitry Kozlyuk: > > On 2/5/2020 4:39 PM, Pallavi Kadam wrote:

Re: [dpdk-dev] [PATCH v7 9/9] eal: add minimum viable code to support parsing

2020-02-05 Thread Dmitry Kozlyuk
> On 2/5/2020 4:39 PM, Pallavi Kadam wrote: > > > > > > On 2/5/2020 11:54 AM, Dmitry Kozlyuk wrote: > >> Crashes at argument parsing, WinDbg log attached. > > This patch works fine with meson=0.49. > > I was able to execute the 'helloworld' app. > > > > When I tried to build with meson=0.52 i

Re: [dpdk-dev] [PATCH v7 9/9] eal: add minimum viable code to support parsing

2020-02-05 Thread Pallavi Kadam
On 2/5/2020 6:11 PM, Thomas Monjalon wrote: 06/02/2020 02:39, Pallavi Kadam: On 2/5/2020 4:39 PM, Pallavi Kadam wrote: On 2/5/2020 11:54 AM, Dmitry Kozlyuk wrote: Crashes at argument parsing, WinDbg log attached. This patch works fine with meson=0.49. I was able to execute the 'helloworld'

Re: [dpdk-dev] [PATCH v7 9/9] eal: add minimum viable code to support parsing

2020-02-05 Thread Thomas Monjalon
06/02/2020 02:39, Pallavi Kadam: > On 2/5/2020 4:39 PM, Pallavi Kadam wrote: > > On 2/5/2020 11:54 AM, Dmitry Kozlyuk wrote: > >> Crashes at argument parsing, WinDbg log attached. > > This patch works fine with meson=0.49. > > I was able to execute the 'helloworld' app. > > > > When I tried to buil

Re: [dpdk-dev] [PATCH v7 9/9] eal: add minimum viable code to support parsing

2020-02-05 Thread Pallavi Kadam
On 2/5/2020 4:39 PM, Pallavi Kadam wrote: On 2/5/2020 11:54 AM, Dmitry Kozlyuk wrote: Crashes at argument parsing, WinDbg log attached. This patch works fine with meson=0.49. I was able to execute the 'helloworld' app. When I tried to build with meson=0.52 it failed with the error: [9/25]

Re: [dpdk-dev] [PATCH v7 9/9] eal: add minimum viable code to support parsing

2020-02-05 Thread Pallavi Kadam
On 2/5/2020 11:54 AM, Dmitry Kozlyuk wrote: Crashes at argument parsing, WinDbg log attached. This patch works fine with meson=0.49. I was able to execute the 'helloworld' app. When I tried to build with meson=0.52 it failed with the error: [9/25] Linking target lib/librte_kvargs-20.0.dll. F

Re: [dpdk-dev] [PATCH v7 9/9] eal: add minimum viable code to support parsing

2020-02-05 Thread Dmitry Kozlyuk
Crashes at argument parsing, WinDbg log attached. -- Dmitry Kozlyuk Microsoft (R) Windows Debugger Version 10.0.18362.1 AMD64 Copyright (c) Microsoft Corporation. All rights reserved. CommandLine: build\native\clang\examples\dpdk-helloworld.exe -cf --log-level=eal:8 Symbol search path is: srv*

[dpdk-dev] [PATCH v7 9/9] eal: add minimum viable code to support parsing

2020-01-31 Thread Pallavi Kadam
Adding specific logic for eal.c to support parsing on Windows. Signed-off-by: Pallavi Kadam Signed-off-by: Antara Ganesh Kolar Reviewed-by: Ranjit Menon Reviewed-by: Keith Wiles --- lib/librte_eal/windows/eal/eal.c | 133 ++- 1 file changed, 130 insertions(+), 3 de