public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r12-2770] libgcc: Honor LDFLAGS_FOR_TARGET when linking libgcc_s
@ 2021-08-05 15:33 Jakub Jelinek
  0 siblings, 0 replies; only message in thread
From: Jakub Jelinek @ 2021-08-05 15:33 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:02e5ffd5db0e27f4113d25ab28afa27e4e32c79e

commit r12-2770-g02e5ffd5db0e27f4113d25ab28afa27e4e32c79e
Author: Jakub Jelinek <jakub@redhat.com>
Date:   Thu Aug 5 17:32:06 2021 +0200

    libgcc: Honor LDFLAGS_FOR_TARGET when linking libgcc_s
    
    When building gcc with some specific LDFLAGS_FOR_TARGET, e.g.
    LDFLAGS_FOR_TARGET=-Wl,-z,relro,-z,now
    those flags propagate info linking of target shared libraries,
    e.g. lib{ubsan,tsan,stdc++,quadmath,objc,lsan,itm,gphobos,gdruntime,gomp,go,gfortran,atomic,asan}.so.*
    but there is one important exception, libgcc_s.so.* linking ignores it.
    
    The following patch fixes that.
    
    Bootstrapped/regtested on x86_64-linux with LDFLAGS_FOR_TARGET=-Wl,-z,relro,-z,now
    and verified that libgcc_s.so.* is BIND_NOW when it previously wasn't, and
    without any LDFLAGS_FOR_TARGET on x86_64-linux and i686-linux.
    There on x86_64-linux I've verified that the libgcc_s.so.1 linking command
    line for -m64 is identical except for whitespace to one without the patch,
    and for -m32 multilib $(LDFLAGS) actually do supply there an extra -m32
    that also repeats later in the @multilib_flags@, which should be harmless.
    
    2021-08-04  Jakub Jelinek  <jakub@redhat.com>
    
            * config/t-slibgcc (SHLIB_LINK): Add $(LDFLAGS).
            * config/t-slibgcc-darwin (SHLIB_LINK): Likewise.
            * config/t-slibgcc-vms (SHLIB_LINK): Likewise.
            * config/t-slibgcc-fuchsia (SHLIB_LDFLAGS): Remove $(LDFLAGS).

Diff:
---
 libgcc/config/t-slibgcc         | 2 +-
 libgcc/config/t-slibgcc-darwin  | 2 +-
 libgcc/config/t-slibgcc-fuchsia | 3 +--
 libgcc/config/t-slibgcc-vms     | 2 +-
 4 files changed, 4 insertions(+), 5 deletions(-)

diff --git a/libgcc/config/t-slibgcc b/libgcc/config/t-slibgcc
index c59b43b7b69..50f13c2f1fa 100644
--- a/libgcc/config/t-slibgcc
+++ b/libgcc/config/t-slibgcc
@@ -32,7 +32,7 @@ SHLIB_INSTALL_SOLINK = $(LN_S) $(SHLIB_SONAME) \
 	$(DESTDIR)$(slibdir)$(SHLIB_SLIBDIR_QUAL)/$(SHLIB_SOLINK)
 
 SHLIB_LINK = $(CC) $(LIBGCC2_CFLAGS) -shared -nodefaultlibs \
-	$(SHLIB_LDFLAGS) \
+	$(SHLIB_LDFLAGS) $(LDFLAGS) \
 	-o $(SHLIB_DIR)/$(SHLIB_SONAME).tmp @multilib_flags@ \
 	$(SHLIB_OBJS) $(SHLIB_LC) && \
 	rm -f $(SHLIB_DIR)/$(SHLIB_SOLINK) && \
diff --git a/libgcc/config/t-slibgcc-darwin b/libgcc/config/t-slibgcc-darwin
index 9970d003436..a6ada456e40 100644
--- a/libgcc/config/t-slibgcc-darwin
+++ b/libgcc/config/t-slibgcc-darwin
@@ -15,7 +15,7 @@ SHLIB_LC = -lc
 # Note that this version is used for the loader, not the linker; the linker
 # uses the stub versions named by the versioned members of $(INSTALL_FILES).
 
-SHLIB_LINK = $(CC) $(LIBGCC2_CFLAGS) -dynamiclib -nodefaultlibs \
+SHLIB_LINK = $(CC) $(LIBGCC2_CFLAGS) $(LDFLAGS) -dynamiclib -nodefaultlibs \
 	-install_name @shlib_slibdir@/$(SHLIB_INSTALL_NAME) \
 	-single_module -o $(SHLIB_DIR)/$(SHLIB_SONAME) \
 	-Wl,-exported_symbols_list,$(SHLIB_MAP) \
diff --git a/libgcc/config/t-slibgcc-fuchsia b/libgcc/config/t-slibgcc-fuchsia
index 35b0017c9b4..97f18034558 100644
--- a/libgcc/config/t-slibgcc-fuchsia
+++ b/libgcc/config/t-slibgcc-fuchsia
@@ -18,5 +18,4 @@
 
 # Fuchsia-specific shared library overrides.
 
-SHLIB_LDFLAGS = -Wl,--soname=$(SHLIB_SONAME) \
-                $(LDFLAGS)
+SHLIB_LDFLAGS = -Wl,--soname=$(SHLIB_SONAME)
diff --git a/libgcc/config/t-slibgcc-vms b/libgcc/config/t-slibgcc-vms
index d01c34341c8..c3059758752 100644
--- a/libgcc/config/t-slibgcc-vms
+++ b/libgcc/config/t-slibgcc-vms
@@ -22,7 +22,7 @@ SHLIB_LINK = \
   objdump --syms $(SHLIB_OBJS) | \
   $(SHLIB_SYMVEC) >> SYMVEC_$$$$.opt ; \
   echo "case_sensitive=NO" >> SYMVEC_$$$$.opt; \
-  $(CC) $(LIBGCC2_CFLAGS) -nodefaultlibs \
+  $(CC) $(LIBGCC2_CFLAGS) $(LDFLAGS) -nodefaultlibs \
   -shared --for-linker=/noinform -o $(SHLIB_NAME) $(SHLIB_OBJS) \
   --for-linker=SYMVEC_$$$$.opt \
   --for-linker=gsmatch=equal,$(shlib_version)


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2021-08-05 15:33 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-05 15:33 [gcc r12-2770] libgcc: Honor LDFLAGS_FOR_TARGET when linking libgcc_s Jakub Jelinek

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).