From 8867c3c14b0005530d041215de8383a0fbf2c327 Mon Sep 17 00:00:00 2001 From: Adhemerval Zanella Date: Tue, 17 Oct 2017 13:32:03 -0200 Subject: 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. --- scripts/build-many-glibcs.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'scripts') 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') -- cgit v1.1