Re: [dpdk-dev] [PATCH v2] vhost: fix compile error

2019-11-06 Thread Maxime Coquelin
On 10/30/19 10:40 AM, Jin Yu wrote: > Compile librte_vhost/vhost_crypto.c needs the rte_hash.h > So we need the librte_hash to be compiled before vhost. > Add the DEPDIRs to make sure this. > > Bugzilla ID: 356 > Fixes: 939066d96563 ("vhost/crypto: add public function implementation") > Cc: sta

Re: [dpdk-dev] [PATCH v2] vhost: fix compile error

2019-11-06 Thread Maxime Coquelin
Hi Jin, On 10/30/19 10:40 AM, Jin Yu wrote: > Compile librte_vhost/vhost_crypto.c needs the rte_hash.h > So we need the librte_hash to be compiled before vhost. > Add the DEPDIRs to make sure this. > > Bugzilla ID: 356 > Fixes: 939066d96563 ("vhost/crypto: add public function implementation") > C

Re: [dpdk-dev] [PATCH v2] vhost: fix compile error

2019-11-06 Thread Maxime Coquelin
On 10/30/19 10:40 AM, Jin Yu wrote: > Compile librte_vhost/vhost_crypto.c needs the rte_hash.h > So we need the librte_hash to be compiled before vhost. > Add the DEPDIRs to make sure this. > > Bugzilla ID: 356 > Fixes: 939066d96563 ("vhost/crypto: add public function implementation") > Cc: sta

Re: [dpdk-dev] [PATCH v2] vhost: fix compile error

2019-11-03 Thread Tiwei Bie
On Wed, Oct 30, 2019 at 05:40:55PM +0800, Jin Yu wrote: > Compile librte_vhost/vhost_crypto.c needs the rte_hash.h > So we need the librte_hash to be compiled before vhost. > Add the DEPDIRs to make sure this. > > Bugzilla ID: 356 > Fixes: 939066d96563 ("vhost/crypto: add public function implement

[dpdk-dev] [PATCH v2] vhost: fix compile error

2019-10-29 Thread Jin Yu
Compile librte_vhost/vhost_crypto.c needs the rte_hash.h So we need the librte_hash to be compiled before vhost. Add the DEPDIRs to make sure this. Bugzilla ID: 356 Fixes: 939066d96563 ("vhost/crypto: add public function implementation") Cc: sta...@dpdk.org Signed-off-by: Jin Yu --- V2 - add the