From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail.droids-corp.org (zoll.droids-corp.org [94.23.50.67]) by dpdk.org (Postfix) with ESMTP id 2E5205A92 for ; Fri, 16 Jan 2015 15:27:59 +0100 (CET) Received: from was59-1-82-226-113-214.fbx.proxad.net ([82.226.113.214] helo=[192.168.0.10]) by mail.droids-corp.org with esmtpsa (TLS1.2:DHE_RSA_AES_128_CBC_SHA1:128) (Exim 4.80) (envelope-from ) id 1YC7vu-0002fl-IT; Fri, 16 Jan 2015 15:31:33 +0100 Message-ID: <54B91FE3.8010607@6wind.com> Date: Fri, 16 Jan 2015 15:27:47 +0100 From: Olivier MATZ User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Icedove/31.3.0 MIME-Version: 1.0 To: sothy shan , Neil Horman References: <20141224150401.GB23653@localhost.localdomain> <20141225170848.GA3199@localhost.localdomain> <20141226143737.GB5567@localhost.localdomain> <20150110124431.GA14681@localhost.localdomain> In-Reply-To: Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Cc: "dev@dpdk.org" Subject: Re: [dpdk-dev] No probed ethernet devices /DPDP 1.7.1 in Fedora 21 X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Jan 2015 14:27:59 -0000 Hi Sothy, On 01/16/2015 03:10 PM, sothy shan wrote: > I guess you are completely wrong. > > Becasue when I do > > make config T=x86_64-ivshmem-linuxapp-gcc > make > > Testpmd works. > > When I do with > > export RTE_SDK=$(pwd)export RTE_TARGET="x86_64-ivshmem-linuxapp-gcc" > make CONFIG_RTE_BUILD_COMBINE_LIBS=y CONFIG_RTE_BUILD_SHARED_LIB=y > install T="$RTE_TARGET" Are you sure that this syntax is supported by the build system? As far as I know, RTE_SDK and RTE_TARGET must be defined when building an external application (like in examples), not when building test-pmd app which is a sdk built-in. Also, I'm not sure passing a CONFIG_XYZ=y variable will be properly taken in account by the build system. Where did you found this syntax? The proper way is: make config T=x86_64-ivshmem-linuxapp-gcc O=my_dir ${EDITOR} my_dir/.config make O=my_dir One last comment, please be careful when copy/pasting commands in mails as there are typos in some of your commands. A reader could expect that your problem comes from this: $ export RTE_SDK=$(pwd)export RTE_TARGET="x86_64-ivshmem-linuxapp-gcc" $ echo $RTE_SDK /home/userexport Regards, Olivier