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.23-214-g68e9d3c


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  68e9d3c6889aa3594b6722e420813fa120c9d612 (commit)
       via  a00d3f4a8c19547b4050889965d9a2a93429ae51 (commit)
      from  6f8222a1c52a9e577925b90d16b95be10ef50596 (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=68e9d3c6889aa3594b6722e420813fa120c9d612

commit 68e9d3c6889aa3594b6722e420813fa120c9d612
Author: Siddhesh Poyarekar <sid@reserved-bit.com>
Date:   Wed Apr 20 10:23:53 2016 +0530

    Fix up ChangeLog formatting

diff --git a/ChangeLog b/ChangeLog
index a87a0b2..9f9270b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -815,8 +815,8 @@
 2016-03-23  Nick Alcock  <nick.alcock@oracle.com>
 
 	* sysdeps/unix/sysv/linux/i386/pthread_cond_timedwait.S: Reload
-        call-clobbered %eax on retry path.
-        * sysdeps/unix/sysv/linux/i386/pthread_cond_wait.S: Likewise.
+	call-clobbered %eax on retry path.
+	* sysdeps/unix/sysv/linux/i386/pthread_cond_wait.S: Likewise.
 
 2016-03-22  H.J. Lu  <hongjiu.lu@intel.com>
 

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

commit a00d3f4a8c19547b4050889965d9a2a93429ae51
Author: Siddhesh Poyarekar <sid@reserved-bit.com>
Date:   Wed Apr 20 10:23:28 2016 +0530

    New make target to only build benchmark binaries
    
    For situations where we are cross-building or where we want to avoid
    building on the target system, we want a way to only build benchmarks
    and then copy them over to the target system to run them.  I have also
    added a simple enhancement for the 'bench' target where all benchmark
    binaries are built and then the benchmarks executed.
    
    Tested on arm.
    
    	Makefile.in (bench-build): New target.
    	Rules (PHONY): Add bench-build target.
    	benchtests/Makefile (bench): Depend on bench-build.
    	(bench-build): New target.

diff --git a/ChangeLog b/ChangeLog
index faa1e63..a87a0b2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2016-04-20  Siddhesh Poyarekar  <sid@reserved-bit.com>
+
+	Makefile.in (bench-build): New target.
+	Rules (PHONY): Add bench-build target.
+	benchtests/Makefile (bench): Depend on bench-build.
+	(bench-build): New target.
+
 2016-04-19  Samuel Thibault  <samuel.thibault@ens-lyon.org>
 
 	* sysdeps/mach/hurd/profil.c (update_waiter): Initialize
diff --git a/Makefile.in b/Makefile.in
index 710ce7e..3fe9e73 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -12,7 +12,7 @@ install:
 	LC_ALL=C; export LC_ALL; \
 	$(MAKE) -r PARALLELMFLAGS="$(PARALLELMFLAGS)" -C $(srcdir) objdir=`pwd` $@
 
-bench bench-clean:
+bench bench-clean bench-build:
 	$(MAKE) -C $(srcdir)/benchtests $(PARALLELMFLAGS) objdir=`pwd` $@
 
 # Convenience target to rebuild ULPs for all math tests.
diff --git a/Rules b/Rules
index d8093b3..8306d36 100644
--- a/Rules
+++ b/Rules
@@ -83,7 +83,7 @@ common-generated += dummy.o dummy.c
 
 # This makes all the auxiliary and test programs.
 
-.PHONY: others tests bench
+.PHONY: others tests bench bench-build
 
 ifeq ($(build-programs),yes)
 others: $(addprefix $(objpfx),$(others) $(sysdep-others) $(extra-objs))
diff --git a/benchtests/Makefile b/benchtests/Makefile
index 61077ea..a05974e 100644
--- a/benchtests/Makefile
+++ b/benchtests/Makefile
@@ -128,7 +128,10 @@ bench-clean:
 	rm -f $(binaries-bench-malloc) $(addsuffix .o,$(binaries-bench-malloc))
 	rm -f $(timing-type) $(addsuffix .o,$(timing-type))
 
-bench: $(timing-type) $(gen-locales) bench-set bench-func bench-malloc
+bench: $(timing-type) $(gen-locales) bench-build bench-set bench-func \
+	bench-malloc
+# Target to only build the benchmark without running it.
+bench-build: $(binaries-bench) $(binaries-benchset) $(binaries-bench-malloc)
 
 bench-set: $(binaries-benchset)
 	for run in $^; do \

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

Summary of changes:
 ChangeLog           |   11 +++++++++--
 Makefile.in         |    2 +-
 Rules               |    2 +-
 benchtests/Makefile |    5 ++++-
 4 files changed, 15 insertions(+), 5 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]