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 master updated. glibc-2.26.9000-955-ge70c6fe


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, master has been updated
       via  e70c6fee466d26af36a38270e451cbe3273a6660 (commit)
      from  dee943668fdf97e118fe14f7953486b934cbf9c4 (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=e70c6fee466d26af36a38270e451cbe3273a6660

commit e70c6fee466d26af36a38270e451cbe3273a6660
Author: H.J. Lu <hjl.tools@gmail.com>
Date:   Mon Dec 11 08:39:10 2017 -0800

    string: Replace = with += in CFLAGS-xxx.c
    
    Replace = with += in CFLAGS-xxx.c to allow Makefile under sysdeps to
    define CFLAGS-xx.c.
    
    	* string/Makefile (CFLAGS-inl-tester.c): Replace = with +=.
    	(CFLAGS-noinl-tester.c): Likewise.
    	(CFLAGS-tst-strlen.c): Likewise.
    	(CFLAGS-stratcliff.c): Likewise.
    	(CFLAGS-test-ffs.c): Likewise.
    	(CFLAGS-tst-inlcall.c): Likewise.
    	(CFLAGS-tst-xbzero-opt.c): Likewise.
    	(CFLAGS-memcpy.c): Likewise.
    	(CFLAGS-wordcopy.c): Likewise.

diff --git a/ChangeLog b/ChangeLog
index 252c25c..50da031 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,15 @@
+2017-12-11  H.J. Lu  <hongjiu.lu@intel.com>
+
+	* string/Makefile (CFLAGS-inl-tester.c): Replace = with +=.
+	(CFLAGS-noinl-tester.c): Likewise.
+	(CFLAGS-tst-strlen.c): Likewise.
+	(CFLAGS-stratcliff.c): Likewise.
+	(CFLAGS-test-ffs.c): Likewise.
+	(CFLAGS-tst-inlcall.c): Likewise.
+	(CFLAGS-tst-xbzero-opt.c): Likewise.
+	(CFLAGS-memcpy.c): Likewise.
+	(CFLAGS-wordcopy.c): Likewise.
+
 2017-12-11  Stefan Liebler  <stli@linux.vnet.ibm.com>
 
 	* sysdeps/s390/s390-64/dl-trampoline.h (_dl_runtime_resolve):
diff --git a/string/Makefile b/string/Makefile
index d7e90a3..74ba4f2 100644
--- a/string/Makefile
+++ b/string/Makefile
@@ -69,13 +69,13 @@ endif
 
 include ../Rules
 
-CFLAGS-inl-tester.c = -fno-builtin
-CFLAGS-noinl-tester.c = -fno-builtin
-CFLAGS-tst-strlen.c = -fno-builtin
-CFLAGS-stratcliff.c = -fno-builtin
-CFLAGS-test-ffs.c = -fno-builtin
-CFLAGS-tst-inlcall.c = -fno-builtin
-CFLAGS-tst-xbzero-opt.c = -O3
+CFLAGS-inl-tester.c += -fno-builtin
+CFLAGS-noinl-tester.c += -fno-builtin
+CFLAGS-tst-strlen.c += -fno-builtin
+CFLAGS-stratcliff.c += -fno-builtin
+CFLAGS-test-ffs.c += -fno-builtin
+CFLAGS-tst-inlcall.c += -fno-builtin
+CFLAGS-tst-xbzero-opt.c += -O3
 # BZ 21006: Resolve all functions but at least explicit_bzero at startup.
 # Otherwise the test fails on s390x as the memcpy in prepare_test_buffer is
 # done by loading r4 / r5 with the test_pattern and using store multiple
@@ -86,8 +86,8 @@ CFLAGS-tst-xbzero-opt.c = -O3
 LDFLAGS-tst-xbzero-opt = -z now
 
 # Called during TLS initialization.
-CFLAGS-memcpy.c = $(no-stack-protector)
-CFLAGS-wordcopy.c = $(no-stack-protector)
+CFLAGS-memcpy.c += $(no-stack-protector)
+CFLAGS-wordcopy.c += $(no-stack-protector)
 
 ifeq ($(run-built-tests),yes)
 $(objpfx)tst-svc-cmp.out: tst-svc.expect $(objpfx)tst-svc.out

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

Summary of changes:
 ChangeLog       |   12 ++++++++++++
 string/Makefile |   18 +++++++++---------
 2 files changed, 21 insertions(+), 9 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]