public inbox for glibc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug ports/16499] New: armv4 (non-thumb) builds broken in clone.S
@ 2014-01-22 19:29 vapier at gentoo dot org
  2014-01-24 13:16 ` [Bug ports/16499] " cvs-commit at gcc dot gnu.org
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: vapier at gentoo dot org @ 2014-01-22 19:29 UTC (permalink / raw)
  To: glibc-bugs

https://sourceware.org/bugzilla/show_bug.cgi?id=16499

            Bug ID: 16499
           Summary: armv4 (non-thumb) builds broken in clone.S
           Product: glibc
           Version: unspecified
            Status: NEW
          Severity: normal
          Priority: P2
         Component: ports
          Assignee: unassigned at sourceware dot org
          Reporter: vapier at gentoo dot org
                CC: carlos at redhat dot com, roland at gnu dot org,
                    will.newton at gmail dot com
            Blocks: 15909
              Host: armv4l-unknown-linux-gnueabi

after the change in bug 15909, building for non-thumb armv4 fails:
../ports/sysdeps/unix/sysv/linux/arm/nptl/../clone.S: Assembler messages:
../ports/sysdeps/unix/sysv/linux/arm/nptl/../clone.S:97: Error: selected
processor does not support ARM mode `blx lr'

-- 
You are receiving this mail because:
You are on the CC list for the bug.


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug ports/16499] armv4 (non-thumb) builds broken in clone.S
  2014-01-22 19:29 [Bug ports/16499] New: armv4 (non-thumb) builds broken in clone.S vapier at gentoo dot org
@ 2014-01-24 13:16 ` cvs-commit at gcc dot gnu.org
  2014-01-25 22:05 ` cvs-commit at gcc dot gnu.org
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2014-01-24 13:16 UTC (permalink / raw)
  To: glibc-bugs

http://sourceware.org/bugzilla/show_bug.cgi?id=16499

--- Comment #1 from cvs-commit at gcc dot gnu.org <cvs-commit at gcc dot gnu.org> ---
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  47590bce28616abbcee93457da91d65a7a07589b (commit)
      from  5d41dadf31bc8a2f9c34c40d52a442d3794e405c (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 -----------------------------------------------------------------
https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=47590bce28616abbcee93457da91d65a7a07589b

commit 47590bce28616abbcee93457da91d65a7a07589b
Author: Will Newton <will.newton@linaro.org>
Date:   Thu Jan 23 11:11:24 2014 +0000

    ARM: Fix clone build for ARMv4

    ARMv4 does not have the blx instruction, so use the BLX macro which
    handles abstracting this for us.

    Build tested for armv7, armv4t and armv4.

    ports/ChangeLog.arm:

    2014-01-24  Will Newton  <will.newton@linaro.org>

        [BZ #16499]
        * sysdeps/unix/sysv/linux/arm/clone.S: Use BLX macro instead
        of blx instruction directly.

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

Summary of changes:
 ports/ChangeLog.arm                       |    6 ++++++
 ports/sysdeps/unix/sysv/linux/arm/clone.S |    8 +-------
 2 files changed, 7 insertions(+), 7 deletions(-)

-- 
You are receiving this mail because:
You are on the CC list for the bug.


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug ports/16499] armv4 (non-thumb) builds broken in clone.S
  2014-01-22 19:29 [Bug ports/16499] New: armv4 (non-thumb) builds broken in clone.S vapier at gentoo dot org
  2014-01-24 13:16 ` [Bug ports/16499] " cvs-commit at gcc dot gnu.org
@ 2014-01-25 22:05 ` cvs-commit at gcc dot gnu.org
  2014-01-27 11:37 ` allan at archlinux dot org
  2014-06-13  8:52 ` fweimer at redhat dot com
  3 siblings, 0 replies; 5+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2014-01-25 22:05 UTC (permalink / raw)
  To: glibc-bugs

http://sourceware.org/bugzilla/show_bug.cgi?id=16499

--- Comment #2 from cvs-commit at gcc dot gnu.org <cvs-commit at gcc dot gnu.org> ---
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, gentoo/2.18 has been updated
       via  787172fdbbdf78fc30f222748f1197d396b05f96 (commit)
       via  f09e8aec0cf7a8ddda8ae04859f3e256c1741775 (commit)
      from  3cd70f9e650bafef5c73c19229e6f0176604bb9e (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 -----------------------------------------------------------------
https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=787172fdbbdf78fc30f222748f1197d396b05f96

commit 787172fdbbdf78fc30f222748f1197d396b05f96
Author: Richard Henderson <rth@twiddle.net>
Date:   Fri Jan 24 09:07:04 2014 -0800

    alpha: Fix tls-macros.h

    Reported to the gcc bugzilla, there was a missing dependency on $gp
    that let the compiler generated $gp reload be scheduled across the
    macros here.

    (cherry picked from commit 4ab6acaebd0047dc37c6493946484be9f1b4920b)

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=f09e8aec0cf7a8ddda8ae04859f3e256c1741775

commit f09e8aec0cf7a8ddda8ae04859f3e256c1741775
Author: Will Newton <will.newton@linaro.org>
Date:   Thu Jan 23 11:11:24 2014 +0000

    ARM: Fix clone build for ARMv4

    ARMv4 does not have the blx instruction, so use the BLX macro which
    handles abstracting this for us.

    Build tested for armv7, armv4t and armv4.

    ports/ChangeLog.arm:

    2014-01-24  Will Newton  <will.newton@linaro.org>

        [BZ #16499]
        * sysdeps/unix/sysv/linux/arm/clone.S: Use BLX macro instead
        of blx instruction directly.

    (cherry picked from commit 47590bce28616abbcee93457da91d65a7a07589b)

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

Summary of changes:
 ports/sysdeps/alpha/tls-macros.h          |   22 +++++++++++-----------
 ports/sysdeps/unix/sysv/linux/arm/clone.S |    8 +-------
 2 files changed, 12 insertions(+), 18 deletions(-)

-- 
You are receiving this mail because:
You are on the CC list for the bug.


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug ports/16499] armv4 (non-thumb) builds broken in clone.S
  2014-01-22 19:29 [Bug ports/16499] New: armv4 (non-thumb) builds broken in clone.S vapier at gentoo dot org
  2014-01-24 13:16 ` [Bug ports/16499] " cvs-commit at gcc dot gnu.org
  2014-01-25 22:05 ` cvs-commit at gcc dot gnu.org
@ 2014-01-27 11:37 ` allan at archlinux dot org
  2014-06-13  8:52 ` fweimer at redhat dot com
  3 siblings, 0 replies; 5+ messages in thread
From: allan at archlinux dot org @ 2014-01-27 11:37 UTC (permalink / raw)
  To: glibc-bugs

https://sourceware.org/bugzilla/show_bug.cgi?id=16499

Allan McRae <allan at archlinux dot org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |allan at archlinux dot org
         Resolution|---                         |FIXED

--- Comment #3 from Allan McRae <allan at archlinux dot org> ---
commit 47590bce28616abbcee93457da91d65a7a07589b
Author: Will Newton <will.newton@linaro.org>
Date:   Thu Jan 23 11:11:24 2014 +0000

    ARM: Fix clone build for ARMv4

-- 
You are receiving this mail because:
You are on the CC list for the bug.


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug ports/16499] armv4 (non-thumb) builds broken in clone.S
  2014-01-22 19:29 [Bug ports/16499] New: armv4 (non-thumb) builds broken in clone.S vapier at gentoo dot org
                   ` (2 preceding siblings ...)
  2014-01-27 11:37 ` allan at archlinux dot org
@ 2014-06-13  8:52 ` fweimer at redhat dot com
  3 siblings, 0 replies; 5+ messages in thread
From: fweimer at redhat dot com @ 2014-06-13  8:52 UTC (permalink / raw)
  To: glibc-bugs

https://sourceware.org/bugzilla/show_bug.cgi?id=16499

Florian Weimer <fweimer at redhat dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
              Flags|                            |security-

-- 
You are receiving this mail because:
You are on the CC list for the bug.


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2014-06-13  8:52 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-01-22 19:29 [Bug ports/16499] New: armv4 (non-thumb) builds broken in clone.S vapier at gentoo dot org
2014-01-24 13:16 ` [Bug ports/16499] " cvs-commit at gcc dot gnu.org
2014-01-25 22:05 ` cvs-commit at gcc dot gnu.org
2014-01-27 11:37 ` allan at archlinux dot org
2014-06-13  8:52 ` fweimer at redhat dot com

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).