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 8766EA04FA; Thu, 6 Feb 2020 02:40:22 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 903531C2F6; Thu, 6 Feb 2020 02:39:45 +0100 (CET) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by dpdk.org (Postfix) with ESMTP id 3CBD71C20C for ; Thu, 6 Feb 2020 02:39:39 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by fmsmga105.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 05 Feb 2020 17:39:38 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.70,407,1574150400"; d="scan'208,217";a="430352961" Received: from unknown (HELO [10.241.225.211]) ([10.241.225.211]) by fmsmga005.fm.intel.com with ESMTP; 05 Feb 2020 17:39:37 -0800 From: Pallavi Kadam To: Dmitry Kozlyuk Cc: dev@dpdk.org, thomas@monjalon.net, Harini.Ramakrishnan@microsoft.com, keith.wiles@intel.com, bruce.richardson@intel.com, david.marchand@redhat.com, jerinjacobk@gmail.com, ranjit.menon@intel.com, antara.ganesh.kolar@intel.com References: <20200131000307.10608-1-pallavi.kadam@intel.com> <20200201000406.11060-1-pallavi.kadam@intel.com> <20200201000406.11060-10-pallavi.kadam@intel.com> <20200205225441.3d833bae@Sovereign> <63c486b2-b53a-ffe8-fcdf-4fd207132df2@intel.com> Message-ID: <50a4ad5d-d1f2-52a7-5265-e3f0c88114c5@intel.com> Date: Wed, 5 Feb 2020 17:39:37 -0800 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:60.0) Gecko/20100101 Thunderbird/60.9.1 MIME-Version: 1.0 In-Reply-To: <63c486b2-b53a-ffe8-fcdf-4fd207132df2@intel.com> Content-Language: en-US Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.15 Subject: Re: [dpdk-dev] [PATCH v7 9/9] eal: add minimum viable code to support parsing 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 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] Linking target lib/librte_kvargs-20.0.dll. > FAILED: lib/librte_kvargs-20.0.dll > clang @lib/librte_kvargs-20.0.dll.rsp > clang: error: no such file or directory: '/OPT:REF' Fixed this error with the patch you sent before. were able to execute parsing: $ ./build/examples/dpdk-helloworld.exe -l 4-8 EAL: Detected 20 lcore(s) EAL: Detected 2 NUMA nodes hello from core 5 hello from core 6 hello from core 7 hello from core 8 hello from core 4 > > Not completely sure, if this could be the reason for the crash.