From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-we0-f173.google.com (mail-we0-f173.google.com [74.125.82.173]) by dpdk.org (Postfix) with ESMTP id 5391630D for ; Wed, 2 Jul 2014 12:00:06 +0200 (CEST) Received: by mail-we0-f173.google.com with SMTP id t60so11019070wes.4 for ; Wed, 02 Jul 2014 03:00:23 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:organization :user-agent:in-reply-to:references:mime-version :content-transfer-encoding:content-type; bh=1FIj4ZXoBsMC47BkVidk6tOZOLC1JfQh9kNEsYaF1hk=; b=jW4/HCnwggvvn8Xmb9Bwdhc3bhQG9qj8zth9rHfbK+cNDcfQ4HmC3iCDqMTco3qs0i BM1v/SML4WIIBqwYYYOSFnLRFG1kqOb4BoOCoKQFx5ytjL+iZHTe0PUBHfMtNTJaGgl6 BAIjffjzbgIZIfN4KbXgMKW9e/5/8ZvaRI95GcbTCnAxqvl8iAx6oQtagz+JhUhW0cLD LhUZpGY/pV7d5KT9ox4FyC0budx7h53t6yJvnzGgsU8pBLe6jHVq28z6hXJMGI/M88p7 l1BpjACxJCqD3dcWxeGAZ+z1VDpBzT9LZLU/0+x03jaODiO75kZ8EFH/w8+ymX6TIGxl X8SQ== X-Gm-Message-State: ALoCoQn7dottClplz+qXJxkcaFMrL/WTnfgvo1leBplF+vb07T+o997ZY8a1dakjx/JiR9GXMDpJ X-Received: by 10.180.36.18 with SMTP id m18mr3368142wij.74.1404295221479; Wed, 02 Jul 2014 03:00:21 -0700 (PDT) Received: from xps13.localnet (6wind.net2.nerim.net. [213.41.180.237]) by mx.google.com with ESMTPSA id i3sm53441168wiz.13.2014.07.02.03.00.20 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 02 Jul 2014 03:00:20 -0700 (PDT) From: Thomas Monjalon To: sothy shan Date: Wed, 02 Jul 2014 12:00:13 +0200 Message-ID: <2442814.qzRPSFO8B2@xps13> Organization: 6WIND User-Agent: KMail/4.13.1 (Linux/3.14.6-1-ARCH; KDE/4.13.1; x86_64; ; ) In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" 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:00:06 -0000 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) -- Thomas