From 1e5235c5618b60fb196afb292ea88578577e8bc5 Mon Sep 17 00:00:00 2001 From: Florian Weimer Date: Fri, 9 Jul 2021 10:59:22 +0200 Subject: 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. --- scripts/build-many-glibcs.py | 3 +++ 1 file changed, 3 insertions(+) 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']}]) -- cgit 1.4.1