From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-qa0-f41.google.com (mail-qa0-f41.google.com [209.85.216.41]) by dpdk.org (Postfix) with ESMTP id 48B55AE9A for ; Wed, 2 Jul 2014 12:04:34 +0200 (CEST) Received: by mail-qa0-f41.google.com with SMTP id cm18so8906347qab.0 for ; Wed, 02 Jul 2014 03:04:54 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=9iDeTMPh9H3RRd0QkBT8O89FB3OPY15Gy7SA773+Aeo=; b=EZmaXSxpELmGA/ujHyk7TzdplQlmEV7FY5854l5CxXOgWv5HzN5TIRchzmO5fT5mGx LcjypVKeaZMRBsHkDKmZurOvqOFn4aIb6alRlIAl2RZ3vD37EhZb8rh88HvwUdAhrbjk WpDX9ZWgG01+jq3tsw2Lo+cVO5yy9nouoJZlft7p8+gMcaNmpykYe9UkPamHrNA5jJbw o8i0wwGTrpOKkO3SsO352UaQ1fOUFwMBNMYTKVDe7LwNmzWIKZEMzeBRmxwdL+2B5UjC e6rtcLam9h2ddrUIiHbWaioVsZow5DQ1e1njlquixvuijlXD9spzKI/tsoWjEz4fus6Z L27w== MIME-Version: 1.0 X-Received: by 10.140.20.98 with SMTP id 89mr76362421qgi.33.1404295494297; Wed, 02 Jul 2014 03:04:54 -0700 (PDT) Received: by 10.229.54.10 with HTTP; Wed, 2 Jul 2014 03:04:54 -0700 (PDT) In-Reply-To: <2442814.qzRPSFO8B2@xps13> References: <2442814.qzRPSFO8B2@xps13> Date: Wed, 2 Jul 2014 12:04:54 +0200 Message-ID: From: sothy shan To: Thomas Monjalon Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.15 Cc: dev@dpdk.org Subject: Re: [dpdk-dev] Intel DPDK: exception_path:RTE_ARCH 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: Wed, 02 Jul 2014 10:04:34 -0000 On Wed, Jul 2, 2014 at 12:00 PM, Thomas Monjalon wrote: > 2014-07-02 12:56, Alex Markuze: > > On Wed, Jul 2, 2014 at 12:48 PM, sothy shan wrote: > > > I started playing Intel DPDK example. I used to compile exception_path > > > code. > > > When I do make command "make", I got an error, > > > > > > RTE_ARCH is not set. So I set the variable via terminal bash using > > > > > > export RTE_ARCH=x86_64 > > > > > > Stilll it is not working. Any wrong anywhere? > > > > You need, to define the following variables before compiling, please > refer > > to the DPDK documentation. > > > > export RTE_TARGET=x86_64-native-linuxapp-gcc > > > > export RTE_SDK=/home/user/dpdk > > You can also try to build all examples with these commands: > RTE_TARGET=x86_64-native-linuxapp-gcc > make T=$RTE_TARGET install > make T=$RTE_TARGET examples O=$RTE_TARGET/examples > > (with DPDK >= 1.7) > >