Blame SOURCES/0001-net-mlx4-avoid-stripping-the-glue-library.patch

343f6f
From b60115a1c00e30e15395ca0c4bcaf22c3ac431cb Mon Sep 17 00:00:00 2001
343f6f
Message-Id: <b60115a1c00e30e15395ca0c4bcaf22c3ac431cb.1536572113.git.tredaelli@redhat.com>
343f6f
From: Timothy Redaelli <tredaelli@redhat.com>
343f6f
Date: Tue, 31 Jul 2018 15:15:27 +0200
343f6f
Subject: [PATCH 1/2] net/mlx4: avoid stripping the glue library
343f6f
343f6f
Stripping binaries at build time is usually a bad thing since it makes
343f6f
impossible to generate (split) debug symbols and this can lead to a more
343f6f
difficult debugging.
343f6f
343f6f
Fixes: 27cea11686ff ("net/mlx4: spawn rdma-core dependency plug-in")
343f6f
Cc: stable@dpdk.org
343f6f
343f6f
Signed-off-by: Timothy Redaelli <tredaelli@redhat.com>
343f6f
Acked-by: Luca Boccassi <bluca@debian.org>
343f6f
Acked-by: Christian Ehrhardt <christian.ehrhardt@canonical.com>
343f6f
(cherry picked from commit d7a4e99d84f961c72eca7541e090cc3f43b60fb8)
343f6f
---
343f6f
 drivers/net/mlx4/Makefile | 2 +-
343f6f
 1 file changed, 1 insertion(+), 1 deletion(-)
343f6f
343f6f
diff --git a/drivers/net/mlx4/Makefile b/drivers/net/mlx4/Makefile
343f6f
index d24565cd1..6228520c2 100644
343f6f
--- a/drivers/net/mlx4/Makefile
343f6f
+++ b/drivers/net/mlx4/Makefile
343f6f
@@ -139,7 +139,7 @@ $(LIB): $(LIB_GLUE)
343f6f
 $(LIB_GLUE): mlx4_glue.o
343f6f
 	$Q $(LD) $(LDFLAGS) $(EXTRA_LDFLAGS) \
343f6f
 		-Wl,-h,$(LIB_GLUE) \
343f6f
-		-s -shared -o $@ $< -libverbs -lmlx4
343f6f
+		-shared -o $@ $< -libverbs -lmlx4
343f6f
 
343f6f
 mlx4_glue.o: mlx4_autoconf.h
343f6f
 
343f6f
-- 
343f6f
2.17.1
343f6f