diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2017-10-17 13:32:03 -0200 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2017-10-17 13:32:03 -0200 |
commit | 8867c3c14b0005530d041215de8383a0fbf2c327 (patch) | |
tree | 94e31a08d5fabf38ec1785587e8a49b7f0d4d4b8 /scripts | |
parent | 5bf58bc75000e2f49a4836a53dcd2a43884469be (diff) | |
download | glibc-8867c3c14b0005530d041215de8383a0fbf2c327.tar.gz glibc-8867c3c14b0005530d041215de8383a0fbf2c327.tar.xz glibc-8867c3c14b0005530d041215de8383a0fbf2c327.zip |
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.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/build-many-glibcs.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/build-many-glibcs.py b/scripts/build-many-glibcs.py index 4cd0a81f4b..3dd1104b76 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') |