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-588-g8867c3c


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  8867c3c14b0005530d041215de8383a0fbf2c327 (commit)
      from  5bf58bc75000e2f49a4836a53dcd2a43884469be (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=8867c3c14b0005530d041215de8383a0fbf2c327

commit 8867c3c14b0005530d041215de8383a0fbf2c327
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Tue Oct 17 13:32:03 2017 -0200

    Fix armv7-a compiler option name
    
    This patch fixes the wrong -march name option used to define
    the ARMv7-A glibc variant pushed on commit 3d26560.

diff --git a/scripts/build-many-glibcs.py b/scripts/build-many-glibcs.py
index 4cd0a81..3dd1104 100755
--- a/scripts/build-many-glibcs.py
+++ b/scripts/build-many-glibcs.py
@@ -176,9 +176,9 @@ class Context(object):
         self.add_config(arch='arm',
                         os_name='linux-gnueabihf',
                         extra_glibcs=[{'variant': 'v7a',
-                                       'ccopts': '-march=armv7a'},
+                                       'ccopts': '-march=armv7-a'},
                                       {'variant': 'v7a-disable-multi-arch',
-                                       'ccopts': '-march=armv7a',
+                                       'ccopts': '-march=armv7-a',
                                        'cfg': ['--disable-multi-arch']}])
         self.add_config(arch='armeb',
                         os_name='linux-gnueabihf')

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

Summary of changes:
 scripts/build-many-glibcs.py |    4 ++--
 1 files changed, 2 insertions(+), 2 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]