From: Timothy Redaelli Date: Tue, 31 Jul 2018 13:15:27 +0000 (+0200) Subject: net/mlx4: avoid stripping the glue library X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=d7a4e99d84f961c72eca7541e090cc3f43b60fb8;p=dpdk.git net/mlx4: avoid stripping the glue library Stripping binaries at build time is usually a bad thing since it makes impossible to generate (split) debug symbols and this can lead to a more difficult debugging. Fixes: 27cea11686ff ("net/mlx4: spawn rdma-core dependency plug-in") Cc: stable@dpdk.org Signed-off-by: Timothy Redaelli Acked-by: Luca Boccassi Acked-by: Christian Ehrhardt --- diff --git a/drivers/net/mlx4/Makefile b/drivers/net/mlx4/Makefile index 63bc00337b..92e9322501 100644 --- a/drivers/net/mlx4/Makefile +++ b/drivers/net/mlx4/Makefile @@ -115,7 +115,7 @@ endif $(LIB_GLUE): mlx4_glue.o $Q $(LD) $(GLUE_LDFLAGS) $(EXTRA_LDFLAGS) \ -Wl,-h,$(LIB_GLUE) \ - -s -shared -o $@ $< -libverbs -lmlx4 + -shared -o $@ $< -libverbs -lmlx4 mlx4_glue.o: mlx4_autoconf.h