From 3d265601358974c9be8264e53dadd8f9aea5690c Mon Sep 17 00:00:00 2001 From: Adhemerval Zanella Date: Mon, 9 Oct 2017 15:53:33 -0300 Subject: Add build-many-glibcs.py arm-linux-gnueabihf-v7{-disable-multiarch} This patch adds two extra configuration for arm-linux-gnueabihf to cover for multiarch support: 1. arm-linux-gnueabihf-v7a: enables multiarch support by using -march=armv7a. 2. Same as 1. but with --disable-multiarch. Check with build-many-glibcs.py for both options. * scripts/build-many-glibcs.py (Context.add_all_configs): Add arm-linux-gnueabihf multiarch extra_glibcs. --- scripts/build-many-glibcs.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'scripts') diff --git a/scripts/build-many-glibcs.py b/scripts/build-many-glibcs.py index a6c01f9cc4..4cd0a81f4b 100755 --- a/scripts/build-many-glibcs.py +++ b/scripts/build-many-glibcs.py @@ -174,7 +174,12 @@ class Context(object): variant='be8', gcc_cfg=['--with-arch=armv7-a']) self.add_config(arch='arm', - os_name='linux-gnueabihf') + os_name='linux-gnueabihf', + extra_glibcs=[{'variant': 'v7a', + 'ccopts': '-march=armv7a'}, + {'variant': 'v7a-disable-multi-arch', + 'ccopts': '-march=armv7a', + 'cfg': ['--disable-multi-arch']}]) self.add_config(arch='armeb', os_name='linux-gnueabihf') self.add_config(arch='armeb', -- cgit 1.4.1