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]

[glibc/arm/ilp32] Add ILP32 support to aarch64 in build-many-glibcs.py


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

commit 543a207c4e098912ca75ab293aa867902508bf44
Author: Steve Ellcey <sellcey@caviumnetworks.com>
Date:   Thu Aug 31 17:46:27 2017 +0100

    Add ILP32 support to aarch64 in build-many-glibcs.py
    
    2017-09-01  Steve Ellcey  <sellcey@caviumnetworks.com>
    
    	* scripts/build-many-glibcs.py (Context.add_all_configs):
    	Add ilp32 variants of aarch64 architecture.

Diff:
---
 scripts/build-many-glibcs.py | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/scripts/build-many-glibcs.py b/scripts/build-many-glibcs.py
index aa6884e..420638c 100755
--- a/scripts/build-many-glibcs.py
+++ b/scripts/build-many-glibcs.py
@@ -153,8 +153,16 @@ class Context(object):
                         os_name='linux-gnu',
                         extra_glibcs=[{'variant': 'disable-multi-arch',
                                        'cfg': ['--disable-multi-arch']}])
+        self.add_config(arch='aarch64',
+                        os_name='linux-gnu',
+                        variant='ilp32',
+                        gcc_cfg=['--with-multilib-list=ilp32'])
         self.add_config(arch='aarch64_be',
                         os_name='linux-gnu')
+        self.add_config(arch='aarch64_be',
+                        os_name='linux-gnu',
+                        variant='ilp32',
+                        gcc_cfg=['--with-multilib-list=ilp32'])
         self.add_config(arch='alpha',
                         os_name='linux-gnu')
         self.add_config(arch='arm',


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