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.25-370-gee8015b


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  ee8015b9ea084d5727ce477fdd8d935f1de7f7f6 (commit)
      from  302bb1a3c327d546b19447d7304bb2b27e9a34de (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=ee8015b9ea084d5727ce477fdd8d935f1de7f7f6

commit ee8015b9ea084d5727ce477fdd8d935f1de7f7f6
Author: H.J. Lu <hjl.tools@gmail.com>
Date:   Thu May 25 05:41:05 2017 -0700

    Support dl-tunables.list in subdirectories
    
    We can put processor specific tunables in dl-tunables.list under
    sysdeps instead of in elf/dl-tunables.list.
    
    	* Makeconfig ($(common-objpfx)dl-tunable-list.h): Also check
    	dl-tunables.list in subdirectories.

diff --git a/ChangeLog b/ChangeLog
index c085c9b..b0c2047 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2017-05-25  H.J. Lu  <hongjiu.lu@intel.com>
+
+	* Makeconfig ($(common-objpfx)dl-tunable-list.h): Also check
+	dl-tunables.list in subdirectories.
+
 2017-05-25  Paul E. Murphy  <murphyp@linux.vnet.ibm.com>
 	    Gabriel F. T. Gomes  <gftg@linux.vnet.ibm.com>
 	    Tulio Magno Quites Machado Filho  <tuliom@linux.vnet.ibm.com>
diff --git a/Makeconfig b/Makeconfig
index b494b82..e4eda4b 100644
--- a/Makeconfig
+++ b/Makeconfig
@@ -1127,7 +1127,9 @@ ifneq (no,$(have-tunables))
 before-compile += $(common-objpfx)dl-tunable-list.h
 
 $(common-objpfx)dl-tunable-list.h: $(..)scripts/gen-tunables.awk \
-				   $(..)elf/dl-tunables.list
+				   $(..)elf/dl-tunables.list \
+				   $(wildcard $(subdirs:%=$(..)%/dl-tunables.list)) \
+				   $(wildcard $(sysdirs:%=%/dl-tunables.list))
 	$(AWK) -f $^ > $@.tmp
 	mv $@.tmp $@
 endif

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

Summary of changes:
 ChangeLog  |    5 +++++
 Makeconfig |    4 +++-
 2 files changed, 8 insertions(+), 1 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]