aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2023-05-02 21:40:31 +0200
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2023-05-02 21:40:36 +0200
commitcd87e368439ce97d2a2c95894e1851f4c0ff4443 (patch)
tree2c8798e02a8bc91406fd0b04b9ee95accb000b5c
parent0ec48e3337506fcd33abdd86b5ab9e331564b65c (diff)
downloadglibc-cd87e368439ce97d2a2c95894e1851f4c0ff4443.zip
glibc-cd87e368439ce97d2a2c95894e1851f4c0ff4443.tar.gz
glibc-cd87e368439ce97d2a2c95894e1851f4c0ff4443.tar.bz2
hurd: Enable x86_64 build script
This now passes crossbuilds.
-rw-r--r--NEWS5
-rw-r--r--README2
-rwxr-xr-xscripts/build-many-glibcs.py3
3 files changed, 9 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 40964d2..054d81f 100644
--- a/NEWS
+++ b/NEWS
@@ -24,6 +24,11 @@ Major new features:
* A new tunable, glibc.pthread.stack_hugetlb, can be used to disable
Transparent Huge Pages (THP) in stack allocation at pthread_create.
+* Support for x86_64 running on Hurd has been added. This port requires
+ as least binutils 2.40 and GCC 13:
+
+ - x86_64-gnu
+
Deprecated and removed features, and other changes affecting compatibility:
* In the Linux kernel for the hppa/parisc architecture some of the
diff --git a/README b/README
index 63f3a1b..9532b97 100644
--- a/README
+++ b/README
@@ -12,7 +12,7 @@ implement the operating system behavior seen by user applications.
In GNU/Hurd systems, it works with a microkernel and Hurd servers.
The GNU C Library implements much of the POSIX.1 functionality in the
-GNU/Hurd system, using configurations i[4567]86-*-gnu.
+GNU/Hurd system, using configurations i[4567]86-*-gnu and x86_64-gnu.
When working with Linux kernels, this version of the GNU C Library
requires Linux kernel version 3.2 or later.
diff --git a/scripts/build-many-glibcs.py b/scripts/build-many-glibcs.py
index 97b6862..95726c4 100755
--- a/scripts/build-many-glibcs.py
+++ b/scripts/build-many-glibcs.py
@@ -465,6 +465,9 @@ class Context(object):
'ccopts': '-m32 -march=i486'},
{'arch': 'i586',
'ccopts': '-m32 -march=i586'}])
+ self.add_config(arch='x86_64',
+ os_name='gnu',
+ gcc_cfg=['--disable-multilib'])
def add_config(self, **args):
"""Add an individual build configuration."""