From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-qg0-f48.google.com (mail-qg0-f48.google.com [209.85.192.48]) by dpdk.org (Postfix) with ESMTP id DAEF430D for ; Wed, 2 Jul 2014 16:18:55 +0200 (CEST) Received: by mail-qg0-f48.google.com with SMTP id q108so4874354qgd.35 for ; Wed, 02 Jul 2014 07:19:16 -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=HLeSBwqJOTELBht1fMWp8JGVOFcLmSOC/Rk/vvu0H5U=; b=V7bR54fzAmjEe1tzenqS6sOutJ0Fpf5ZtT0QaxwdFsBRbvk1Eo0Zc0A96Rl6ov3gR8 xXGNCOk41hjgTX3K65PilIpn5faMyh2GV4i9uruFZjxNbO/DNoOz+v8awK5CCirUKPoM u2axB8xNdGev8gZzksll4h69OuhzDZn6ZqtIlCnkpJE7lEhffhapDLhCg9CV5QwWbWZR 0Uqf5L7LOd+CA5svFP1wpQchJaO5xw2YBFJQ99ZzH8dYe7q2VwvFpirz0iMmYF9DkVDH hhhUMinCjgk+R8nR+zKx8Hp/MOAw5lDg4ifOm8R1PaGXa8LPWYGNftNJqinYtsvTidmi SKcQ== MIME-Version: 1.0 X-Received: by 10.140.95.215 with SMTP id i81mr33902029qge.6.1404310755958; Wed, 02 Jul 2014 07:19:15 -0700 (PDT) Received: by 10.229.54.10 with HTTP; Wed, 2 Jul 2014 07:19:15 -0700 (PDT) In-Reply-To: References: <2442814.qzRPSFO8B2@xps13> Date: Wed, 2 Jul 2014 16:19:15 +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 14:18:56 -0000 On Wed, Jul 2, 2014 at 12:04 PM, sothy shan wrote: > > > > On Wed, Jul 2, 2014 at 12:00 PM, Thomas Monjalon < > thomas.monjalon@6wind.com> 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) >> >> > > When using DPDK 1.7, example/exception_path works. now playing with it. thx