From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id 967A11B426 for ; Mon, 3 Dec 2018 19:15:41 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga008.jf.intel.com ([10.7.209.65]) by fmsmga103.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 03 Dec 2018 10:15:40 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.56,311,1539673200"; d="scan'208";a="98299719" Received: from irsmsx110.ger.corp.intel.com ([163.33.3.25]) by orsmga008.jf.intel.com with ESMTP; 03 Dec 2018 10:15:39 -0800 Received: from irsmsx104.ger.corp.intel.com ([169.254.5.131]) by irsmsx110.ger.corp.intel.com ([169.254.15.20]) with mapi id 14.03.0415.000; Mon, 3 Dec 2018 18:15:38 +0000 From: "Mokhtar, Amr" To: "Chalupnik, KamilX" , "dev@dpdk.org" CC: "De Lara Guarch, Pablo" , "Yigit, Ferruh" , "akhil.goyal@nxp.com" Thread-Topic: [PATCH] baseband/turbo_sw: dynamic linking error with turbo SW Thread-Index: AQHUiw8Piy0LxzPx6UKQ3taWv3cTNqVtUiKQ Date: Mon, 3 Dec 2018 18:15:38 +0000 Message-ID: <3D3765A8CDB52A4C8B410430AA19CB237090461A@IRSMSX104.ger.corp.intel.com> References: <20181203134811.10616-1-kamilx.chalupnik@intel.com> In-Reply-To: <20181203134811.10616-1-kamilx.chalupnik@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiZDk1NDQ3NWEtODA2Yy00NzhmLWFhODMtZGNmN2M5YmJlNDAzIiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX05UIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE3LjEwLjE4MDQuNDkiLCJUcnVzdGVkTGFiZWxIYXNoIjoiVmdKbzJtcStZNDJFVmxSYmgzM0lWR0gwQ1U1YmRcLzZ4RmduRXNuN0FSZlwvR1VKdlZCcTRlbjBLVmluZzF6ZnBPIn0= x-ctpclassification: CTP_NT dlp-product: dlpe-windows dlp-version: 11.0.400.15 dlp-reaction: no-action x-originating-ip: [163.33.239.180] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH] baseband/turbo_sw: dynamic linking error with turbo SW X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 Dec 2018 18:15:42 -0000 + Akhil > -----Original Message----- > From: Chalupnik, KamilX > Sent: Monday 3 December 2018 13:48 > To: dev@dpdk.org > Cc: Mokhtar, Amr ; De Lara Guarch, Pablo > ; Yigit, Ferruh ; > Chalupnik, KamilX > Subject: [PATCH] baseband/turbo_sw: dynamic linking error with turbo SW >=20 > Building Turbo Software as shared library for AVX512 failed > due to wrong order of library in the library list (LDLIBS) >=20 > Fixes: b8cfe2c9aed2 ("bb/turbo_sw: add software turbo driver") > Cc: amr.mokhtar@intel.com >=20 > Signed-off-by: Kamil Chalupnik > --- > drivers/baseband/turbo_sw/Makefile | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) >=20 > diff --git a/drivers/baseband/turbo_sw/Makefile > b/drivers/baseband/turbo_sw/Makefile > index 79eb554..d364677 100644 > --- a/drivers/baseband/turbo_sw/Makefile > +++ b/drivers/baseband/turbo_sw/Makefile > @@ -27,8 +27,8 @@ CFLAGS +=3D -I$(FLEXRAN_SDK)/lib_turbo > CFLAGS +=3D -I$(FLEXRAN_SDK)/lib_crc > CFLAGS +=3D -I$(FLEXRAN_SDK)/lib_rate_matching >=20 > -LDLIBS +=3D -L$(FLEXRAN_SDK)/lib_crc -lcrc > LDLIBS +=3D -L$(FLEXRAN_SDK)/lib_turbo -lturbo > +LDLIBS +=3D -L$(FLEXRAN_SDK)/lib_crc -lcrc > LDLIBS +=3D -L$(FLEXRAN_SDK)/lib_rate_matching -lrate_matching > LDLIBS +=3D -L$(FLEXRAN_SDK)/lib_common -lcommon > LDLIBS +=3D -lstdc++ -lirc -limf -lipps > -- > 1.8.3.1