[dpdk-dev] [PATCH 2/2] mk: fix two more missing libm dependencies

2016-03-22 Thread Thomas Monjalon
2016-03-21 11:48, Ferruh Yigit: > On 3/21/2016 11:33 AM, Panu Matilainen wrote: > > Commit e86a699cf6b1 missed two further libm dependencies: ceil() used by > > librte_meter is typically inlined so the missing dependency does not > > actually cause failures, and librte_pmd_nfp is not built by defau

[dpdk-dev] [PATCH 2/2] mk: fix two more missing libm dependencies

2016-03-21 Thread Panu Matilainen
Commit e86a699cf6b1 missed two further libm dependencies: ceil() used by librte_meter is typically inlined so the missing dependency does not actually cause failures, and librte_pmd_nfp is not built by default so its easy to miss. This causes duplicates in LDLIBS in many configurations so its vita

[dpdk-dev] [PATCH 2/2] mk: fix two more missing libm dependencies

2016-03-21 Thread Ferruh Yigit
On 3/21/2016 11:33 AM, Panu Matilainen wrote: > Commit e86a699cf6b1 missed two further libm dependencies: ceil() used by > librte_meter is typically inlined so the missing dependency does not > actually cause failures, and librte_pmd_nfp is not built by default > so its easy to miss. > > This caus