summary refs log tree commit diff
path: root/scripts
diff options
context:
space:
mode:
authorPaul E. Murphy <murphyp@linux.ibm.com>2021-09-23 15:25:00 -0500
committerPaul E. Murphy <murphyp@linux.ibm.com>2021-09-24 14:32:35 -0500
commit4ae2b8a42338f6adba7817539d05ad347154cda3 (patch)
treeba4ad5758ec351dc834e904336bb8712fe5efe25 /scripts
parentb26901b26e0b0b61a151ff18e53bee84d977ef7c (diff)
downloadglibc-4ae2b8a42338f6adba7817539d05ad347154cda3.tar.gz
glibc-4ae2b8a42338f6adba7817539d05ad347154cda3.tar.xz
glibc-4ae2b8a42338f6adba7817539d05ad347154cda3.zip
build-many-glibcs.py: add powerpc64le glibc variant without multiarch
This configuration tests the float128 to ldouble128 redirect support
on powerpc64le without the extra wrappers needed to support ifunc
on this target.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/build-many-glibcs.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/build-many-glibcs.py b/scripts/build-many-glibcs.py
index 258a1be27d..6046048b75 100755
--- a/scripts/build-many-glibcs.py
+++ b/scripts/build-many-glibcs.py
@@ -350,7 +350,9 @@ class Context(object):
                         gcc_cfg=['--disable-multilib', '--enable-secureplt'])
         self.add_config(arch='powerpc64le',
                         os_name='linux-gnu',
-                        gcc_cfg=['--disable-multilib', '--enable-secureplt'])
+                        gcc_cfg=['--disable-multilib', '--enable-secureplt'],
+                        extra_glibcs=[{'variant': 'disable-multi-arch',
+                                       'cfg': ['--disable-multi-arch']}])
         self.add_config(arch='riscv32',
                         os_name='linux-gnu',
                         variant='rv32imac-ilp32',