aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDragan Mladjenovic <dmladjenovic@wavecomp.com>2019-12-11 11:23:04 +0100
committerdragan.mladjenovic <dragan.mladjenovic@rt-rk.com>2019-12-16 19:42:37 +0100
commita2e487ce1c59d19345d9ecacc58de79febd869e4 (patch)
tree271a3018fea2f9cfeb498fdad8351e3687f39d16
parent020b2a97bb15f807c0482f0faee2184ed05bcad8 (diff)
downloadglibc-a2e487ce1c59d19345d9ecacc58de79febd869e4.zip
glibc-a2e487ce1c59d19345d9ecacc58de79febd869e4.tar.gz
glibc-a2e487ce1c59d19345d9ecacc58de79febd869e4.tar.bz2
build-many-glibcs.py: Add mipsisa64r6el-linux-gnu target
This patch enables building mips/r6 isa/little-endian/hard-float configuration in o32, n32, and n64 variants.
-rwxr-xr-xscripts/build-many-glibcs.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/scripts/build-many-glibcs.py b/scripts/build-many-glibcs.py
index 0c7d8ec..193d497 100755
--- a/scripts/build-many-glibcs.py
+++ b/scripts/build-many-glibcs.py
@@ -301,6 +301,17 @@ class Context(object):
'ccopts': '-mabi=32'},
{'variant': 'n64-nan2008-soft',
'ccopts': '-mabi=64'}])
+ self.add_config(arch='mipsisa64r6el',
+ os_name='linux-gnu',
+ gcc_cfg=['--with-mips-plt', '--with-nan=2008',
+ '--with-arch-64=mips64r6',
+ '--with-arch-32=mips32r6',
+ '--with-float=hard'],
+ glibcs=[{'variant': 'n32'},
+ {'arch': 'mipsisa32r6el',
+ 'ccopts': '-mabi=32'},
+ {'variant': 'n64',
+ 'ccopts': '-mabi=64'}])
self.add_config(arch='nios2',
os_name='linux-gnu')
self.add_config(arch='powerpc',