This is the mail archive of the
libc-alpha@sourceware.org
mailing list for the glibc project.
[RFC PATCH v3 11/12] C-SKY: Add build-many-glibcs.py support
- From: Mao Han <han_mao at c-sky dot com>
- To: libc-alpha at sourceware dot org
- Cc: Mao Han <han_mao at c-sky dot com>, c-sky_gcc_upstream at c-sky dot com, gnu-csky at mentor dot com
- Date: Fri, 29 Jun 2018 15:58:56 +0800
- Subject: [RFC PATCH v3 11/12] C-SKY: Add build-many-glibcs.py support
- References: <cover.1530246556.git.han_mao@c-sky.com>
- References: <cover.1530246556.git.han_mao@c-sky.com>
* scripts/build-many-glibcs.py: Add C-SKY targets
---
scripts/build-many-glibcs.py | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/scripts/build-many-glibcs.py b/scripts/build-many-glibcs.py
index 601718d..3d658b2a 100755
--- a/scripts/build-many-glibcs.py
+++ b/scripts/build-many-glibcs.py
@@ -191,6 +191,12 @@ class Context(object):
variant='be8',
gcc_cfg=['--with-float=hard', '--with-arch=armv7-a',
'--with-fpu=vfpv3'])
+ self.add_config(arch='csky',
+ os_name='linux-gnuabiv2',
+ gcc_cfg=['--disable-multilib'])
+ self.add_config(arch='csky',
+ os_name='linux-gnuabiv2',
+ gcc_cfg=['--with-float=hard', '--disable-multilib'])
self.add_config(arch='hppa',
os_name='linux-gnu')
self.add_config(arch='i686',
@@ -1247,6 +1253,7 @@ class Config(object):
arch_map = {'aarch64': 'arm64',
'alpha': 'alpha',
'arm': 'arm',
+ 'csky': 'csky',
'hppa': 'parisc',
'i486': 'x86',
'i586': 'x86',
--
2.7.4