* Intel DPDK: exception_path:RTE_ARCH
@ 2014-07-02 9:48 sothy shan
[not found] ` <CAHcF_0YYXi8KiVReuZW7YTWLLDL0A7Ui1fb4qTJpo0C7JoPqRw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
0 siblings, 1 reply; 6+ messages in thread
From: sothy shan @ 2014-07-02 9:48 UTC (permalink / raw)
To: dev-VfR2kkLFssw
Hello!
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?
Thanks for your reponse.
Best regards
Sothy
^ permalink raw reply [flat|nested] 6+ messages in thread[parent not found: <CAHcF_0YYXi8KiVReuZW7YTWLLDL0A7Ui1fb4qTJpo0C7JoPqRw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>]
* Re: Intel DPDK: exception_path:RTE_ARCH [not found] ` <CAHcF_0YYXi8KiVReuZW7YTWLLDL0A7Ui1fb4qTJpo0C7JoPqRw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> @ 2014-07-02 9:56 ` Alex Markuze [not found] ` <CAKfHP0XNmn4zCPd2+42gCLKJw_AS1qonMPiHtLX4ghHBUDR76w-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> 0 siblings, 1 reply; 6+ messages in thread From: Alex Markuze @ 2014-07-02 9:56 UTC (permalink / raw) To: sothy shan; +Cc: dev-VfR2kkLFssw@public.gmane.org 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 On Wed, Jul 2, 2014 at 12:48 PM, sothy shan <sothy.e98-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > Hello! > > 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? > > Thanks for your reponse. > > Best regards > Sothy > ^ permalink raw reply [flat|nested] 6+ messages in thread
[parent not found: <CAKfHP0XNmn4zCPd2+42gCLKJw_AS1qonMPiHtLX4ghHBUDR76w-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>]
* Re: Intel DPDK: exception_path:RTE_ARCH [not found] ` <CAKfHP0XNmn4zCPd2+42gCLKJw_AS1qonMPiHtLX4ghHBUDR76w-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> @ 2014-07-02 10:00 ` Thomas Monjalon 2014-07-02 10:04 ` sothy shan 2014-07-02 12:24 ` sothy shan 1 sibling, 1 reply; 6+ messages in thread From: Thomas Monjalon @ 2014-07-02 10:00 UTC (permalink / raw) To: sothy shan; +Cc: dev-VfR2kkLFssw 2014-07-02 12:56, Alex Markuze: > On Wed, Jul 2, 2014 at 12:48 PM, sothy shan <sothy.e98-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> 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 ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Intel DPDK: exception_path:RTE_ARCH 2014-07-02 10:00 ` Thomas Monjalon @ 2014-07-02 10:04 ` sothy shan [not found] ` <CAHcF_0aWq+EvJechqM9bhVWLFZ9bcSpDt=YG_xNQLYHG-ejWNQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> 0 siblings, 1 reply; 6+ messages in thread From: sothy shan @ 2014-07-02 10:04 UTC (permalink / raw) To: Thomas Monjalon; +Cc: dev-VfR2kkLFssw On Wed, Jul 2, 2014 at 12:00 PM, Thomas Monjalon <thomas.monjalon-pdR9zngts4EAvxtiuMwx3w@public.gmane.org> wrote: > 2014-07-02 12:56, Alex Markuze: > > On Wed, Jul 2, 2014 at 12:48 PM, sothy shan <sothy.e98-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> 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) > > ^ permalink raw reply [flat|nested] 6+ messages in thread
[parent not found: <CAHcF_0aWq+EvJechqM9bhVWLFZ9bcSpDt=YG_xNQLYHG-ejWNQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>]
* Re: Intel DPDK: exception_path:RTE_ARCH [not found] ` <CAHcF_0aWq+EvJechqM9bhVWLFZ9bcSpDt=YG_xNQLYHG-ejWNQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> @ 2014-07-02 14:19 ` sothy shan 0 siblings, 0 replies; 6+ messages in thread From: sothy shan @ 2014-07-02 14:19 UTC (permalink / raw) To: Thomas Monjalon; +Cc: dev-VfR2kkLFssw@public.gmane.org On Wed, Jul 2, 2014 at 12:04 PM, sothy shan <sothy.e98-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > > > > On Wed, Jul 2, 2014 at 12:00 PM, Thomas Monjalon < > thomas.monjalon-pdR9zngts4EAvxtiuMwx3w@public.gmane.org> wrote: > >> 2014-07-02 12:56, Alex Markuze: >> > On Wed, Jul 2, 2014 at 12:48 PM, sothy shan <sothy.e98-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> >> 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 ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Intel DPDK: exception_path:RTE_ARCH [not found] ` <CAKfHP0XNmn4zCPd2+42gCLKJw_AS1qonMPiHtLX4ghHBUDR76w-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> 2014-07-02 10:00 ` Thomas Monjalon @ 2014-07-02 12:24 ` sothy shan 1 sibling, 0 replies; 6+ messages in thread From: sothy shan @ 2014-07-02 12:24 UTC (permalink / raw) To: Alex Markuze; +Cc: dev-VfR2kkLFssw@public.gmane.org I followed and error is there again. See more description here: make didnot worked. I still use 1.6. :-) cubiq@WKS-LNX-006:~$ ${RTE_SDK} cubiq@WKS-LNX-006:~$ ${RTE_TARGET} cubiq@WKS-LNX-006:~$ export RTE_SDK=/home/cubiq/sothy/dpdk-1.6.0r2 cubiq@WKS-LNX-006:~$ export RTE_TARGET=x86_64-native-linuxapp-gcc cubiq@WKS-LNX-006:~$ cd ${RTE_SDK} cubiq@WKS-LNX-006:~/sothy/dpdk-1.6.0r2$ cd examples/exception_path/ cubiq@WKS-LNX-006:~/sothy/dpdk-1.6.0r2/examples/exception_path$ make /home/cubiq/sothy/dpdk-1.6.0r2/mk/rte.extvars.mk:71: /home/cubiq/sothy/dpdk-1.6.0r2/x86_64-native-linuxapp-gcc/.config: Aucun fichier ou dossier de ce type /home/cubiq/sothy/dpdk-1.6.0r2/mk/rte.vars.mk:99: *** RTE_ARCH is not defined. Arrêt. cubiq@WKS-LNX-006:~/sothy/dpdk-1.6.0r2/examples/exception_path$ On Wed, Jul 2, 2014 at 11:56 AM, Alex Markuze <alex-I7wstvAgZDk@public.gmane.org> wrote: > 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 > > > On Wed, Jul 2, 2014 at 12:48 PM, sothy shan <sothy.e98-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > >> Hello! >> >> 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? >> >> Thanks for your reponse. >> >> Best regards >> Sothy >> > > ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2014-07-02 14:19 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-07-02 9:48 Intel DPDK: exception_path:RTE_ARCH sothy shan
[not found] ` <CAHcF_0YYXi8KiVReuZW7YTWLLDL0A7Ui1fb4qTJpo0C7JoPqRw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2014-07-02 9:56 ` Alex Markuze
[not found] ` <CAKfHP0XNmn4zCPd2+42gCLKJw_AS1qonMPiHtLX4ghHBUDR76w-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2014-07-02 10:00 ` Thomas Monjalon
2014-07-02 10:04 ` sothy shan
[not found] ` <CAHcF_0aWq+EvJechqM9bhVWLFZ9bcSpDt=YG_xNQLYHG-ejWNQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2014-07-02 14:19 ` sothy shan
2014-07-02 12:24 ` sothy shan
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).