From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id 048C15936 for ; Tue, 21 Jul 2015 11:49:40 +0200 (CEST) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by orsmga101.jf.intel.com with ESMTP; 21 Jul 2015 02:49:39 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.15,515,1432623600"; d="scan'208";a="751380963" Received: from irsmsx106.ger.corp.intel.com ([163.33.3.31]) by fmsmga001.fm.intel.com with ESMTP; 21 Jul 2015 02:49:37 -0700 Received: from irsmsx101.ger.corp.intel.com ([169.254.1.201]) by IRSMSX106.ger.corp.intel.com ([169.254.8.121]) with mapi id 14.03.0224.002; Tue, 21 Jul 2015 10:49:12 +0100 From: "Rauta, Alin" To: Thomas Monjalon Thread-Topic: [dpdk-dev] [PATCH] DPDK fails to build into one single library ("CONFIG_RTE_BUILD_COMBINE_LIBS=y"). Thread-Index: AQHQwxUh7GUi3pfh5EiRtvi5laaDn53kHbAAgACJBrD///I6AIABFRUQ Date: Tue, 21 Jul 2015 09:49:11 +0000 Message-ID: <313CE12EB78416478E6F6FC8F09CCF8C354185@IRSMSX101.ger.corp.intel.com> References: <1437389608-18697-1-git-send-email-alin.rauta@intel.com> <1437389608-18697-2-git-send-email-alin.rauta@intel.com> <313CE12EB78416478E6F6FC8F09CCF8C353CB9@IRSMSX101.ger.corp.intel.com> <1754975.lJ4YckftyJ@xps13> In-Reply-To: <1754975.lJ4YckftyJ@xps13> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [163.33.239.180] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Cc: "dev@dpdk.org" , "Varlese, Marco" Subject: Re: [dpdk-dev] [PATCH] DPDK fails to build into one single library ("CONFIG_RTE_BUILD_COMBINE_LIBS=y"). X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 Jul 2015 09:49:41 -0000 The reason why I took into account as a solution the commenting of that lin= e is that LIBRTE_EAL already has rte_malloc integrated. So, I'm not sure why the line is needed ... /Alin=20 -----Original Message----- From: Thomas Monjalon [mailto:thomas.monjalon@6wind.com]=20 Sent: Monday, July 20, 2015 7:15 PM To: Rauta, Alin Cc: dev@dpdk.org; Varlese, Marco Subject: Re: [dpdk-dev] [PATCH] DPDK fails to build into one single library= ("CONFIG_RTE_BUILD_COMBINE_LIBS=3Dy"). 2015-07-20 18:04, Rauta, Alin: > --- a/lib/Makefile > +++ b/lib/Makefile > @@ -33,7 +33,6 @@ include $(RTE_SDK)/mk/rte.vars.mk > =20 > DIRS-y +=3D librte_compat > DIRS-$(CONFIG_RTE_LIBRTE_EAL) +=3D librte_eal > -DIRS-$(CONFIG_RTE_LIBRTE_EAL) +=3D librte_malloc I feel it's not the right fix :) >>From now, I'll test combine lib build. Thanks for reporting