+ Akhil
> -----Original Message-----
> From: Chalupnik, KamilX
> Sent: Monday 3 December 2018 13:48
> To: [email protected]
> Cc: Mokhtar, Amr <[email protected]>; De Lara Guarch, Pablo
> <[email protected]>; Yigit, Ferruh <[email protected]>;
> Chalupnik, KamilX <[email protected]>
> Subject: [PATCH] baseband/turbo_sw: dynamic linking error with turbo SW
>
> Building Turbo Software as shared library for AVX512 failed
> due to wrong order of library in the library list (LDLIBS)
>
> Fixes: b8cfe2c9aed2 ("bb/turbo_sw: add software turbo driver")
> Cc: [email protected]
>
> Signed-off-by: Kamil Chalupnik <[email protected]>
> ---
> drivers/baseband/turbo_sw/Makefile | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> 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 += -I$(FLEXRAN_SDK)/lib_turbo
> CFLAGS += -I$(FLEXRAN_SDK)/lib_crc
> CFLAGS += -I$(FLEXRAN_SDK)/lib_rate_matching
>
> -LDLIBS += -L$(FLEXRAN_SDK)/lib_crc -lcrc
> LDLIBS += -L$(FLEXRAN_SDK)/lib_turbo -lturbo
> +LDLIBS += -L$(FLEXRAN_SDK)/lib_crc -lcrc
> LDLIBS += -L$(FLEXRAN_SDK)/lib_rate_matching -lrate_matching
> LDLIBS += -L$(FLEXRAN_SDK)/lib_common -lcommon
> LDLIBS += -lstdc++ -lirc -limf -lipps
> --
> 1.8.3.1