Re: [dpdk-dev] [PATCH] vhost/crypto: fix build without cryptodev (shared lib)

2018-10-16 Thread Maxime Coquelin
On 10/16/2018 06:54 PM, Timothy Redaelli wrote: Currently it's not possible to build DPDK as shared library with cryptodev disabled since vhost is trying to link with rte_crypto, but rte_crypto and rte_hash are only needed when you build vhost_crypto and so only when cryptodev is enabled. Thi

[dpdk-dev] [PATCH] vhost/crypto: fix build without cryptodev (shared lib)

2018-10-16 Thread Timothy Redaelli
Currently it's not possible to build DPDK as shared library with cryptodev disabled since vhost is trying to link with rte_crypto, but rte_crypto and rte_hash are only needed when you build vhost_crypto and so only when cryptodev is enabled. This patch fix this by linking rte_vhost with rte_crypto