[dpdk-dev] [PATCH] mk: fix examples build failure

2016-02-08 Thread Thomas Monjalon
Hi, 2015-12-24 20:38, steeven lee: > --- a/mk/internal/rte.extvars.mk > +++ b/mk/internal/rte.extvars.mk > # RTE_SDK_BIN must point to .config, include/ and lib/. > -RTE_SDK_BIN := $(RTE_SDK)/$(RTE_TARGET) > +RTE_SDK_BIN := $(RTE_SDK)/build RTE_TARGET is the right value here. To make it work

[dpdk-dev] [PATCH] mk: fix examples build failure

2016-01-05 Thread steeven lee
Hi Michael: Seems the examples makefile seems to be broken, easy to reproduce on master branch, below is the outputs on Ubuntu 14.04 amd64 version: ~/work/dpdk$ export RTE_SDK=/home/steeven/work/dpdk ~/work/dpdk$ cd /home/steeven/work/dpdk/examples/helloworld/ ~/work/dpdk/examples/helloworld$

[dpdk-dev] [PATCH] mk: fix examples build failure

2015-12-28 Thread Yuanhan Liu
On Thu, Dec 24, 2015 at 08:38:07PM +0800, steeven lee wrote: > 1. Fix examples build failure Paste the build error here, so that we know you are acutally fixing a build error. And if it's a build error specific to some GCC, or Linux distribution, please also note it in the commit log. > 2. make

[dpdk-dev] [PATCH] mk: fix examples build failure

2015-12-28 Thread Qiu, Michael
On 12/24/2015 8:38 PM, steeven lee wrote: > 1. Fix examples build failure > 2. make build as default output folder name > > Signed-off-by: steeven > --- > mk/internal/rte.extvars.mk | 4 ++-- > mk/rte.extsubdir.mk| 2 +- > 2 files changed, 3 insertions(+), 3 deletions(-) > > diff --git

[dpdk-dev] [PATCH] mk: fix examples build failure

2015-12-27 Thread Thomas Monjalon
2015-12-24 20:38, steeven lee: > 1. Fix examples build failure Please explain in the commit log what was the issue. > 2. make build as default output folder name It should be a separate patch. What is the benefit? Please give some example command lines. Thanks