summary refs log tree commit diff
path: root/scripts
diff options
context:
space:
mode:
authorFlorian Weimer <fweimer@redhat.com>2021-07-09 10:59:22 +0200
committerFlorian Weimer <fweimer@redhat.com>2021-07-09 10:59:22 +0200
commit1e5235c5618b60fb196afb292ea88578577e8bc5 (patch)
tree790c2bb2cfc4e55af24390977abfc0ac1dc3cd50 /scripts
parent508ee037a30f1d4f6a1f8de2bd0d9866d4684625 (diff)
downloadglibc-1e5235c5618b60fb196afb292ea88578577e8bc5.tar.gz
glibc-1e5235c5618b60fb196afb292ea88578577e8bc5.tar.xz
glibc-1e5235c5618b60fb196afb292ea88578577e8bc5.zip
build-many-glibcs.py: Add glibcs-arm-linux-gnueabihf-thumb
Previously, there was no thumb variant, despite that building
glibc in Thumb-2 mode is supported.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/build-many-glibcs.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/build-many-glibcs.py b/scripts/build-many-glibcs.py
index 243323b1ce..6643bb6e92 100755
--- a/scripts/build-many-glibcs.py
+++ b/scripts/build-many-glibcs.py
@@ -188,6 +188,9 @@ class Context(object):
                         gcc_cfg=['--with-float=hard', '--with-cpu=arm926ej-s'],
                         extra_glibcs=[{'variant': 'v7a',
                                        'ccopts': '-march=armv7-a -mfpu=vfpv3'},
+                                      {'variant': 'thumb',
+                                       'ccopts':
+                                       '-mthumb -march=armv7-a -mfpu=vfpv3'},
                                       {'variant': 'v7a-disable-multi-arch',
                                        'ccopts': '-march=armv7-a -mfpu=vfpv3',
                                        'cfg': ['--disable-multi-arch']}])