Michel Lind 03a788
From a91f8252d007aa0d8b2d211ea0061a60ad003c73 Mon Sep 17 00:00:00 2001
Michel Lind 03a788
From: Kamal Heib <kheib@redhat.com>
Michel Lind 03a788
Date: Tue, 17 Oct 2023 14:19:52 -0400
Michel Lind 03a788
Subject: [PATCH] Add default link flags for shared libraries
Michel Lind 03a788
Michel Lind 03a788
Signed-off-by: Kamal Heib <kheib@redhat.com>
Michel Lind 03a788
---
Michel Lind 03a788
 cmdif/Makefile.am      | 2 +-
Michel Lind 03a788
 dev_mgt/Makefile.am    | 2 +-
Michel Lind 03a788
 mtcr_py/Makefile.am    | 2 +-
Michel Lind 03a788
 reg_access/Makefile.am | 2 +-
Michel Lind 03a788
 4 files changed, 4 insertions(+), 4 deletions(-)
Michel Lind 03a788
Petr Šabata 0ef609
diff --git a/cmdif/Makefile.am b/cmdif/Makefile.am
Michel Lind 03a788
index 7bb332aada48..3ffdf7d6653e 100644
Petr Šabata 0ef609
--- a/cmdif/Makefile.am
Petr Šabata 0ef609
+++ b/cmdif/Makefile.am
Michel Lind 03a788
@@ -53,7 +53,7 @@ libcmdif_la_SOURCES = tools_cif.c tools_cif.h icmd_cif_common.c icmd_cif_common.
Petr Šabata 0ef609
 cmdif_pylibdir = $(libdir)/mstflint/python_tools/
Petr Šabata 0ef609
 cmdif_pylib_DATA = ${CCMDIF_SO} cmdif.py
Michel Lind 03a788
 ${CCMDIF_SO}: libcmdif.la
Petr Šabata 0ef609
-	$(CC) -g -Wall -pthread -shared ${CFLAGS} *.o -o ${CCMDIF_SO} \
Petr Šabata 0ef609
+	$(CC) -g -Wall -pthread -shared ${CFLAGS} ${LDFLAGS} *.o -o ${CCMDIF_SO} \
Michel Lind 03a788
 	$(top_builddir)/tools_layouts/.libs/libtools_layouts.a $(top_builddir)/${MTCR_CONF_DIR}/.libs/libmtcr_ul.a
Petr Šabata 0ef609
 
Petr Šabata 0ef609
 CLEANFILES = ${CCMDIF_SO}
Petr Šabata 0ef609
diff --git a/dev_mgt/Makefile.am b/dev_mgt/Makefile.am
Michel Lind 03a788
index a5f66e9fd935..0d1417daa647 100644
Petr Šabata 0ef609
--- a/dev_mgt/Makefile.am
Petr Šabata 0ef609
+++ b/dev_mgt/Makefile.am
Michel Lind 03a788
@@ -50,7 +50,7 @@ dev_mgt_pylib_DATA = c_dev_mgt.so
Petr Šabata 0ef609
 dist_dev_mgt_pylib_DATA = dev_mgt.py
Petr Šabata 0ef609
 
Michel Lind 03a788
 c_dev_mgt.so: libdev_mgt.la
Petr Šabata 0ef609
-	$(CC) -g -Wall -pthread -shared ${CFLAGS} tools_dev_types.o -o c_dev_mgt.so \
Petr Šabata 0ef609
+	$(CC) -g -Wall -pthread -shared ${CFLAGS} ${LDFLAGS} tools_dev_types.o -o c_dev_mgt.so \
Michel Lind 03a788
 	$(top_builddir)/reg_access/.libs/libreg_access.a \
Michel Lind 03a788
 	$(top_builddir)/tools_layouts/.libs/libtools_layouts.a \
Michel Lind 03a788
 	$(top_builddir)/${MTCR_CONF_DIR}/.libs/libmtcr_ul.a
Petr Šabata 0ef609
diff --git a/mtcr_py/Makefile.am b/mtcr_py/Makefile.am
Michel Lind 03a788
index 46fa4e60916d..2f431156a45e 100644
Petr Šabata 0ef609
--- a/mtcr_py/Makefile.am
Petr Šabata 0ef609
+++ b/mtcr_py/Makefile.am
Michel Lind 03a788
@@ -35,6 +35,6 @@ mtcr_pylibdir = $(libdir)/mstflint/python_tools/
Michel Lind 03a788
 mtcr_pylib_DATA = cmtcr.so
Petr Šabata 0ef609
 dist_mtcr_pylib_DATA = mtcr.py
Petr Šabata 0ef609
 cmtcr.so:
Michel Lind 03a788
-	$(CC) -g -Wall -pthread -shared ${CFLAGS} -o cmtcr.so -Wl,--whole-archive $(top_builddir)/${MTCR_CONF_DIR}/.libs/libmtcr_ul.a -Wl,--no-whole-archive
Michel Lind 03a788
+	$(CC) -g -Wall -pthread -shared ${CFLAGS} ${LDFLAGS} -o cmtcr.so -Wl,--whole-archive $(top_builddir)/${MTCR_CONF_DIR}/.libs/libmtcr_ul.a -Wl,--no-whole-archive
Petr Šabata 0ef609
 
Petr Šabata 0ef609
 CLEANFILES = cmtcr.so
Petr Šabata 0ef609
diff --git a/reg_access/Makefile.am b/reg_access/Makefile.am
Michel Lind 03a788
index 8e38c473cc9c..6228b45af312 100644
Petr Šabata 0ef609
--- a/reg_access/Makefile.am
Petr Šabata 0ef609
+++ b/reg_access/Makefile.am
Michel Lind 03a788
@@ -57,7 +57,7 @@ reg_access_pylib_DATA = ${RREG_ACCESS_SO}
Michel Lind 03a788
 dist_reg_access_pylib_DATA = regaccess.py regaccess_hca_ext_structs.py regaccess_switch_ext_structs.py
Petr Šabata 0ef609
 
Michel Lind 03a788
 ${RREG_ACCESS_SO}: libreg_access.la
Petr Šabata 0ef609
-	$(CC) -g -Wall -pthread -shared ${CFLAGS} *.o -o ${RREG_ACCESS_SO} \
Petr Šabata 0ef609
+	$(CC) -g -Wall -pthread -shared ${CFLAGS} ${LDFLAGS} *.o -o ${RREG_ACCESS_SO} \
Michel Lind 03a788
 	$(top_builddir)/tools_layouts/.libs/libtools_layouts.a $(top_builddir)/${MTCR_CONF_DIR}/.libs/libmtcr_ul.a
Petr Šabata 0ef609
 
Petr Šabata 0ef609
 CLEANFILES = ${RREG_ACCESS_SO}
Michel Lind 03a788
-- 
Michel Lind 03a788
2.44.0
Michel Lind 03a788