hurd: Enable x86_64 build script

This now passes crossbuilds.
This commit is contained in:
Samuel Thibault 2023-05-02 21:40:31 +02:00
parent 0ec48e3337
commit cd87e36843
3 changed files with 9 additions and 1 deletions

5
NEWS
View File

@ -24,6 +24,11 @@ Major new features:
* A new tunable, glibc.pthread.stack_hugetlb, can be used to disable * A new tunable, glibc.pthread.stack_hugetlb, can be used to disable
Transparent Huge Pages (THP) in stack allocation at pthread_create. 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: Deprecated and removed features, and other changes affecting compatibility:
* In the Linux kernel for the hppa/parisc architecture some of the * In the Linux kernel for the hppa/parisc architecture some of the

2
README
View File

@ -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. 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 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 When working with Linux kernels, this version of the GNU C Library
requires Linux kernel version 3.2 or later. requires Linux kernel version 3.2 or later.

View File

@ -465,6 +465,9 @@ class Context(object):
'ccopts': '-m32 -march=i486'}, 'ccopts': '-m32 -march=i486'},
{'arch': 'i586', {'arch': 'i586',
'ccopts': '-m32 -march=i586'}]) 'ccopts': '-m32 -march=i586'}])
self.add_config(arch='x86_64',
os_name='gnu',
gcc_cfg=['--disable-multilib'])
def add_config(self, **args): def add_config(self, **args):
"""Add an individual build configuration.""" """Add an individual build configuration."""