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]

Community source repository for glibc add-on ports branch, release/2.15/master, updated. glibc-2.15-5-ge0fad19


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 "Community source repository for glibc add-on ports".

The branch, release/2.15/master has been updated
       via  e0fad19514f89e82e2787ee2abb0653adcacb338 (commit)
      from  32a6153180751322aa1c0518fabb6c697dc4ed79 (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://sources.redhat.com/git/gitweb.cgi?p=glibc-ports.git;a=commitdiff;h=e0fad19514f89e82e2787ee2abb0653adcacb338

commit e0fad19514f89e82e2787ee2abb0653adcacb338
Author: Khem Raj <raj.khem@gmail.com>
Date:   Wed Feb 15 22:09:44 2012 +0000

    Only build libc-do-syscall.S in Thumb mode.
    (cherry picked from commit 3fdf1316ac44fb22cc1ffca1bcc1c9e722504445)

diff --git a/ChangeLog.arm b/ChangeLog.arm
index 36027d5..7faad75 100644
--- a/ChangeLog.arm
+++ b/ChangeLog.arm
@@ -1,3 +1,9 @@
+2012-02-15  Khem Raj  <raj.khem@gmail.com>
+
+	[BZ #12097]
+	* sysdeps/unix/sysv/linux/arm/eabi/libc-do-syscall.S: Disable
+	contents unless __thumb__.
+
 2012-01-03  Mike Frysinger  <vapier@gentoo.org>
 
 	[BZ #12354]
diff --git a/sysdeps/unix/sysv/linux/arm/eabi/libc-do-syscall.S b/sysdeps/unix/sysv/linux/arm/eabi/libc-do-syscall.S
index 0fca969..3d3792a 100644
--- a/sysdeps/unix/sysv/linux/arm/eabi/libc-do-syscall.S
+++ b/sysdeps/unix/sysv/linux/arm/eabi/libc-do-syscall.S
@@ -1,4 +1,4 @@
-/* Copyright (C) 2010 Free Software Foundation, Inc.
+/* Copyright (C) 2010-2012 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -25,6 +25,7 @@
    ARM unwind tables for register to register moves, the actual opcodes
    are not defined.  */
 
+#if defined(__thumb__)
 	.thumb
 	.syntax unified
 	.hidden __libc_do_syscall
@@ -44,3 +45,5 @@ ENTRY (__libc_do_syscall)
 	pop	{r7, pc}
 	.fnend
 END (__libc_do_syscall)
+
+#endif /* __thumb__ */

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

Summary of changes:
 ChangeLog.arm                                      |    6 ++++++
 sysdeps/unix/sysv/linux/arm/eabi/libc-do-syscall.S |    5 ++++-
 2 files changed, 10 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
Community source repository for glibc add-on ports


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