* Cannot compile l2fwd-jobstats example
@ 2015-02-25 2:26 Tetsuya Mukawa
[not found] ` <54ED32EE.9090604-AlSX/UN32fvPDbFq/vQRIQ@public.gmane.org>
0 siblings, 1 reply; 3+ messages in thread
From: Tetsuya Mukawa @ 2015-02-25 2:26 UTC (permalink / raw)
To: dev-VfR2kkLFssw@public.gmane.org
Hi,
I cannot compile l2fwd-jobstats using master branch.
Here is log
$ T=x86_64-native-linuxapp-gcc make examples
================== Build examples for x86_64-native-linuxapp-gcc
== bond
== cmdline
== distributor
== exception_path
== helloworld
== ip_pipeline
== ip_reassembly
== ipv4_multicast
== kni
== l2fwd
== l2fwd-jobstats
make: *** l2fwd-jobstats: No such file or directory. Stop.
make[2]: *** [l2fwd-jobstats] Error 2
make[1]: *** [x86_64-native-linuxapp-gcc_examples] Error 2
make: *** [examples] Error 2
As a result of bisecting, it seems after applying below commit, this
error can be seen.
commit 2caeb8c0141dcf488f2d68aa8e8c44d1f85ed28b
Author: Pawel Wodkowski <pawelx.wodkowski-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
Date: Tue Feb 24 17:33:24 2015 +0100
examples/l2fwd-jobstats: new example
Thanks,
Tetsuya
^ permalink raw reply [flat|nested] 3+ messages in thread[parent not found: <54ED32EE.9090604-AlSX/UN32fvPDbFq/vQRIQ@public.gmane.org>]
* Re: Cannot compile l2fwd-jobstats example [not found] ` <54ED32EE.9090604-AlSX/UN32fvPDbFq/vQRIQ@public.gmane.org> @ 2015-02-25 7:38 ` Pawel Wodkowski [not found] ` <54ED7BF3.6060603-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org> 0 siblings, 1 reply; 3+ messages in thread From: Pawel Wodkowski @ 2015-02-25 7:38 UTC (permalink / raw) To: Tetsuya Mukawa, dev-VfR2kkLFssw@public.gmane.org, Thomas Monjalon On 2015-02-25 03:26, Tetsuya Mukawa wrote: > Hi, > > I cannot compile l2fwd-jobstats using master branch. > Here is log > > $ T=x86_64-native-linuxapp-gcc make examples > ================== Build examples for x86_64-native-linuxapp-gcc > == bond > == cmdline > == distributor > == exception_path > == helloworld > == ip_pipeline > == ip_reassembly > == ipv4_multicast > == kni > == l2fwd > == l2fwd-jobstats > make: *** l2fwd-jobstats: No such file or directory. Stop. > make[2]: *** [l2fwd-jobstats] Error 2 > make[1]: *** [x86_64-native-linuxapp-gcc_examples] Error 2 > make: *** [examples] Error 2 > > > As a result of bisecting, it seems after applying below commit, this > error can be seen. > > commit 2caeb8c0141dcf488f2d68aa8e8c44d1f85ed28b > Author: Pawel Wodkowski <pawelx.wodkowski-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org> > Date: Tue Feb 24 17:33:24 2015 +0100 > > examples/l2fwd-jobstats: new example > > > Thanks, > Tetsuya > Looking on git log, there are missing two files there: examples/l2fwd-jobstats/Makefile examples/l2fwd-jobstats/main.c from patch http://dpdk.org/ml/archives/dev/2015-February/014107.html -- Pawel ^ permalink raw reply [flat|nested] 3+ messages in thread
[parent not found: <54ED7BF3.6060603-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>]
* Re: Cannot compile l2fwd-jobstats example [not found] ` <54ED7BF3.6060603-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org> @ 2015-02-25 9:27 ` Thomas Monjalon 0 siblings, 0 replies; 3+ messages in thread From: Thomas Monjalon @ 2015-02-25 9:27 UTC (permalink / raw) To: Pawel Wodkowski, Tetsuya Mukawa; +Cc: dev-VfR2kkLFssw 2015-02-25 08:38, Pawel Wodkowski: > On 2015-02-25 03:26, Tetsuya Mukawa wrote: > > Hi, > > > > I cannot compile l2fwd-jobstats using master branch. > > Here is log > > > > $ T=x86_64-native-linuxapp-gcc make examples > > ================== Build examples for x86_64-native-linuxapp-gcc > > == bond > > == cmdline > > == distributor > > == exception_path > > == helloworld > > == ip_pipeline > > == ip_reassembly > > == ipv4_multicast > > == kni > > == l2fwd > > == l2fwd-jobstats > > make: *** l2fwd-jobstats: No such file or directory. Stop. > > make[2]: *** [l2fwd-jobstats] Error 2 > > make[1]: *** [x86_64-native-linuxapp-gcc_examples] Error 2 > > make: *** [examples] Error 2 > > > > > > As a result of bisecting, it seems after applying below commit, this > > error can be seen. > > > > commit 2caeb8c0141dcf488f2d68aa8e8c44d1f85ed28b > > Author: Pawel Wodkowski <pawelx.wodkowski-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org> > > Date: Tue Feb 24 17:33:24 2015 +0100 > > > > examples/l2fwd-jobstats: new example > > > > > > Thanks, > > Tetsuya > > > > Looking on git log, there are missing two files there: > > examples/l2fwd-jobstats/Makefile > examples/l2fwd-jobstats/main.c > > from patch http://dpdk.org/ml/archives/dev/2015-February/014107.html Yes, it explains why it works on my machine... I forgot to add them after fixing merge. It's fixed now. Sorry for the inconvenience. ^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-02-25 9:27 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-02-25 2:26 Cannot compile l2fwd-jobstats example Tetsuya Mukawa
[not found] ` <54ED32EE.9090604-AlSX/UN32fvPDbFq/vQRIQ@public.gmane.org>
2015-02-25 7:38 ` Pawel Wodkowski
[not found] ` <54ED7BF3.6060603-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2015-02-25 9:27 ` Thomas Monjalon
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.