On 21/07/2015 10:49, Rauta, Alin wrote: > The reason why I took into account as a solution the commenting of that line > is that LIBRTE_EAL already has rte_malloc integrated. > So, I'm not sure why the line is needed ... > /Alin
That line is needed so when we create shared libs it creates a dummy lib so we don't brake apps that expect a librte_malloc.so. I'm working on a fix, will post it soon. Sergio > > -----Original Message----- > From: Thomas Monjalon [mailto:thomas.monjalon at 6wind.com] > Sent: Monday, July 20, 2015 7:15 PM > To: Rauta, Alin > Cc: dev at dpdk.org; Varlese, Marco > Subject: Re: [dpdk-dev] [PATCH] DPDK fails to build into one single library > ("CONFIG_RTE_BUILD_COMBINE_LIBS=y"). > > 2015-07-20 18:04, Rauta, Alin: >> --- a/lib/Makefile >> +++ b/lib/Makefile >> @@ -33,7 +33,6 @@ include $(RTE_SDK)/mk/rte.vars.mk >> >> DIRS-y += librte_compat >> DIRS-$(CONFIG_RTE_LIBRTE_EAL) += librte_eal >> -DIRS-$(CONFIG_RTE_LIBRTE_EAL) += librte_malloc > I feel it's not the right fix :) > > From now, I'll test combine lib build. > Thanks for reporting