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-607-g4027a4f


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  4027a4fda011c4431bdc3a063963de0b6fd6c07e (commit)
      from  2f9314b4121b0200559693d6cfc8f61c692c2857 (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=4027a4fda011c4431bdc3a063963de0b6fd6c07e

commit 4027a4fda011c4431bdc3a063963de0b6fd6c07e
Author: H.J. Lu <hjl.tools@gmail.com>
Date:   Fri Oct 20 03:34:38 2017 -0700

    m68k: Check PIC instead of SHARED in start.S
    
    Since start.o may be compiled as PIC, we should check PIC instead of
    SHARED.
    
    	* sysdeps/m68k/start.S (_start): Check PIC instead of SHARED.

diff --git a/ChangeLog b/ChangeLog
index d8194dc..138eea5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2017-10-20  H.J. Lu  <hongjiu.lu@intel.com>
+
+	* sysdeps/m68k/start.S (_start): Check PIC instead of SHARED.
+
 2017-10-20  Mike FABIAN  <mfabian@redhat.com>
 
 	[BZ #13605]
diff --git a/sysdeps/m68k/start.S b/sysdeps/m68k/start.S
index 71ba3b9..9f5d588 100644
--- a/sysdeps/m68k/start.S
+++ b/sysdeps/m68k/start.S
@@ -76,7 +76,7 @@ _start:
 	pea (%a1)		/* Push address of the shared library
 				   termination function.  */
 
-#ifdef SHARED
+#ifdef PIC
 	/* Load PIC register.  */
 	LOAD_GOT (%a5)
 

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

Summary of changes:
 ChangeLog            |    4 ++++
 sysdeps/m68k/start.S |    2 +-
 2 files changed, 5 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]