This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch google/grte/v5-2.27/master updated. glibc-2.27-177-gb9dab9c


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, google/grte/v5-2.27/master has been updated
       via  b9dab9c53496a8cd5bb18342eceff8a584c37a3e (commit)
      from  d65c936935cf3ce192a0b70b94b3cc3e8162d21c (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=b9dab9c53496a8cd5bb18342eceff8a584c37a3e

commit b9dab9c53496a8cd5bb18342eceff8a584c37a3e
Author: Stan Shebs <stanshebs@google.com>
Date:   Wed Feb 20 12:16:05 2019 -0800

    Avoid gas errors by supppressing extra arguments to section directives

diff --git a/Makerules b/Makerules
index 726d74b..e19c3a2 100644
--- a/Makerules
+++ b/Makerules
@@ -227,7 +227,7 @@ endif
 
 MOARFLAGS =
 ifeq ($(with-clang),yes)
-MOARFLAGS = -no-integrated-as
+MOARFLAGS = -no-integrated-as -funique-section-names
 endif
 
 ifdef gen-py-const-headers
diff --git a/nptl/Makefile b/nptl/Makefile
index f00466b..32297db 100644
--- a/nptl/Makefile
+++ b/nptl/Makefile
@@ -227,7 +227,7 @@ CFLAGS-pt-system.c += -fexceptions
 
 # Workaround for clang assembler problem with ifunc relocs, b/119574415
 ifeq ($(with-clang),yes)
-CFLAGS-pt-vfork.c += -no-integrated-as
+CFLAGS-pt-vfork.c += -no-integrated-as -funique-section-names
 endif
 
 LDLIBS-tst-once5 = -lstdc++
diff --git a/stdio-common/Makefile b/stdio-common/Makefile
index c2aa41c..8434fab 100644
--- a/stdio-common/Makefile
+++ b/stdio-common/Makefile
@@ -138,7 +138,7 @@ CFLAGS-siglist.c += $(fno-unit-at-a-time)
 
 # The clang integrated assembler does not like the '@@@' trickery here.
 ifeq ($(with-clang),yes)
-CFLAGS-errlist.c += -no-integrated-as
+CFLAGS-errlist.c += -no-integrated-as -funique-section-names
 endif
 
 # The following is a hack since we must compile scanf1{5,7}.c without any

-----------------------------------------------------------------------

Summary of changes:
 Makerules             |    2 +-
 nptl/Makefile         |    2 +-
 stdio-common/Makefile |    2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]